$(document).ready(function (){

	/*-------footer logo anim hover-------*/
	$("#footer .footerBox li").hover(function(){
		$(this).stop().fadeTo("fast",0.6);
	},function (){
		$(this).fadeTo("fast",1);
	});
	/*-------footer logo anim hover-------*/
	
	/*-------footer menu anim hover-------*/
	$("#footer #footerMenu li").hover(function(){
		$(this).children("a").stop(true,true).animate({backgroundPosition:"-8px 0"},400);
	},function (){
		$(this).children("a").stop(true,true).animate({backgroundPosition:"0px 0"},250);
	});
	/*-------footer menu anim hover-------*/
	
	/*-------box middle home hover-------*/
	$("#sectionMain .box .hover").hide();
	$("#sectionMain .box").hover(function(){

		$(this).children("h2").addClass("headHover");
		$(this).children(".hover").stop(true,true).show();/*.fadeIn(600, function(){
			if($.browser.msie){
				this.style.removeAttribute('filter');
			}
		});*/
	},function (){

		$(this).children("h2").removeClass("headHover");
		$(this).children(".hover").stop(true,true).hide();/*.fadeOut(500, function(){
			if($.browser.msie){
				this.style.removeAttribute('filter');
			}
		});*/
	});
	/*-------box middle home hover--------*/

})
