$(document).ready(function() {
	/* This code animate the main menu */
	$('.inactive').css( {backgroundPosition: "-132px 0px"} )
	.css("padding-left", "35px")
	.mouseover(function(){
		$(this).stop().animate({backgroundPosition:"(-90px 0px)", paddingLeft: 45}, 450, 'easeOutBounce')
	}).mouseout(function(){
		$(this).stop().animate({backgroundPosition:"(-132px 0px)", paddingLeft: 35}, 350)
	});
	//animateBadge();
	var so = new SWFObject("flash/head.swf", "head", "616", "103", "9", "#86C03F");
	so.addParam("scale", "noscale");
	so.addParam("wmode","opaque");
	so.write("flash_header");
});

animateBadge = function () {
	var badge = $("#promo");
	badge.fadeOut(800, function(){badge.fadeIn(800, animateBadge)});
}