function menuAnimate(){
	$(".boxAbsolute")
		.mouseover(function(){
			$(this)
				.parent()
				.next()
				.children()
				.animate({
					marginTop: "-=15"
				},100);
			
			$(this)
				.parent()
				.parent()
				.addClass("boxBg");
		})
		.mouseout(function(){
			$(this)
				.parent()
				.next()
				.children()
				.animate({
					marginTop: "+=15"
				},100);
			
			$(this)
				.parent()
				.parent()
				.removeClass("boxBg");
		})
}

function redirect(url,timer) {
	if(timer==null)
		timer=5000;
	
	setTimeout(function(){
		document.location.href=url;
	},timer);
}
