/*-----------------------------------------------------------------------------------*/
/*	IMAGE HOVER
/*-----------------------------------------------------------------------------------*/

jQuery(function() {

	jQuery(".proj-three-preview a img, .proj-preview a img, .widget li img").css("opacity","1.0");
	jQuery(".proj-three-preview a img, .proj-preview a img, .widget li img").hover(function () {
	jQuery(this).stop().animate({ opacity: 0.3 }, "fast");  },
	function () {
	jQuery(this).stop().animate({ opacity: 1.0 }, "slow");  
	}); 

	jQuery("#social-footer img").css("opacity","1.0");
	jQuery("#social-footer img").hover(function () {
	jQuery(this).stop().animate({ opacity: 0 }, "fast");  },
	function () {
	jQuery(this).stop().animate({ opacity: 1.0 }, "fast");  
	});
	
	jQuery("#social-team img, .social-team img").css("opacity","1.0");
	jQuery("#social-team img, .social-team img").hover(function () {
	jQuery(this).stop().animate({ opacity: 0 }, "fast");  },
	function () {
	jQuery(this).stop().animate({ opacity: 1.0 }, "fast");  
	});
	
	jQuery(".aventador-sponsors img").css("opacity","0.5");
	jQuery(".aventador-sponsors img").hover(function () {
	jQuery(this).stop().animate({ opacity: 1.0 }, "fast");  },
	function () {
	jQuery(this).stop().animate({ opacity: 0.5 }, "fast");  
	});
	
	jQuery(".widget-menu li a").css("left","0px");
	jQuery(".widget-menu li a").hover(function () {
	jQuery(this).stop().animate({ left: "10px" }, "fast");  },
	function () {
	jQuery(this).stop().animate({ left: "0px" }, "fast");  
	});

});
