$(document).ready(function() {
	
	$(".promo, .item, .model, .car").hover(
		function(){
			$(this).stop(true,false);
			$(this).animate({opacity: 1}, 250);
			$(this).siblings().stop(true,false);
			$(this).siblings().animate({opacity: 0.35}, 100);
		},
		function(){
			$(this).parent().children().stop(true,false);
			$(this).parent().children().animate({opacity: 1}, 500);
		}
	);
		
});


