$(document).ready(function(){
	$(".main .col-right .block-escapades .block-content .sliders .slider").width(44);
	$(".main .col-right .block-escapades .block-content .sliders .slider:first").width(169);
	$(".main .col-right .block-escapades .block-content .sliders .slider").hover(
	function() {
		//$(this).parent().find(".slider:not(inactive)").hide("slide", { direction: "left" }, 1000);
		//$(this).parent().find(".slider:not(inactive)").animate({width: 'toggle'});
		$(this).parent().find(".slider").removeClass("active");
		$(this).addClass("active");
		$(this).parent().find(".slider").not(".active").animate({width: '44', opacity: 0.2}, 200);
		$(this).animate({width: '169', opacity: 1}, 200);
		//$(this).parent().find(".slider").addClass("inactive");
		//$(this).removeClass("inactive");
	},
	function() {
	});
});

