
function hideAction()
{
   $("div#market_inner").hide();
}

function showContent()
{
   $("div#market_content").show();
   $("div#close").show();
}

$(document).ready(function()
{
   if ($("div#market_bg").length > 0)
   {
       $('.pngFix').pngfix();
       var maxHeight = "1000px";
       $("#market_inner").css("height", maxHeight);
       $("#market_bg").css("height", maxHeight);
       $("div#market_bg").css("opacity", 0);
       $("div#market_bg").animate({ opacity: "0.9" }, 1500, showContent);
   }
});

