var flashvars = {};
var params = {
menu:'false',
wmode:'opaque'
};
var attributes = {};
swfobject.embedSWF("fla/main.swf", "mainArea", "800", "270", "9.0.0","fla/expressInstall.swf", flashvars, params, attributes);

$(function() {
	$("#specialContents > div").css("cursor", "pointer").hover(
		function(){
			$("img", this).css('opacity', 0.7);
		},
		function(){
			$("img", this).css('opacity', 1);
		}
	).click( function(){
		if($("a", this).attr("href") == "#") {
			showMovie();
		}else {
			location.href = $("a", this).attr("href");
		}
	});
	$("#specialContents a[href=#]").click( function(e){
		e.preventDefault();
	});
	$("#bnrArea > div").css("cursor", "pointer").hover(
		function () {
			$("ul img", this).attr("src", $("ul img", this).attr("src").replace(".gif", "_on.gif"));
		},
		function () {
			$("ul img", this).attr("src", $("ul img", this).attr("src").replace("_on.gif", ".gif"));
		}
	).click( function(){
		location.href = $("a", this).attr("href");
	});

	$("#topicasTicker ul").liScroll();
});


if($.browser.msie && $.browser.version < 7) DD_belatedPNG.fix('#recipe h3 img');

