$(document).ready(function(){
$("#top_message").load("/2011/_action/message/");
$("#action_btn a").click(function(){
$("#top_action").toggle("fast").css("opacity","0.8").css("position","absolute").css('z-index', 201);
return false;
});
$("#close_button a").live("click", function(){
$("#top_action").toggle("fast");
return false;
});
$("#message_btn a").click(function(){
$("#top_message").toggle("fast").css("opacity","0.8").css("position","absolute").css('z-index', 301);
return false;
});
$("#close_button2 a").live("click", function(){
$("#top_message").toggle("fast");
return false;
});
$("#message_navi a").live('click',function(){
var uri=$(this).attr("href");
$("#top_message").load(uri,function(html, status){$("#top_message").fadeIn("slow");});
return false;
});

$('div#top_main_img').bgSwitcher({
bgImages : ['/img/top_slide_img.jpg']
});
$("#top_about").hide();
//$("#top_campaign,#top_products,#top_event,#top_report,#top_download,#top_mail_magazine").css('z-index', 501).hide();
$("#gnavi1 a").mouseover(function(){
$("#top_about").stop(true,true).fadeIn("slow");
}).mouseout(function(){
$("#top_about").stop(true,true).fadeOut("fast");
});
$("#gnavi2 a").mouseover(function(){
$("#top_campaign").stop(true,true).fadeIn("slow");
}).mouseout(function(){
$("#top_campaign").stop(true,true).fadeOut("fast");
});
$("#gnavi3 a").mouseover(function(){
$("#top_products").stop(true,true).fadeIn("slow");
}).mouseout(function(){
$("#top_products").stop(true,true).fadeOut("fast");
});
$("#gnavi4 a").mouseover(function(){
$("#top_event").stop(true,true).fadeIn("slow");
}).mouseout(function(){
$("#top_event").stop(true,true).fadeOut("fast");
});
$("#gnavi5 a").mouseover(function(){
$("#top_report").stop(true,true).fadeIn("slow");
}).mouseout(function(){
$("#top_report").stop(true,true).fadeOut("fast");
});
$("#gnavi6 a").mouseover(function(){
$("#top_download").stop(true,true).fadeIn("slow");
}).mouseout(function(){
$("#top_download").stop(true,true).fadeOut("fast");
});
$("#gnavi7 a").mouseover(function(){
$("#top_mail_magazine").stop(true,true).fadeIn("slow");
}).mouseout(function(){
$("#top_mail_magazine").stop(true,true).fadeOut("fast");
});

});

