// JavaScript

$(function() {
	
	/* Fix IE6 background image flicker */
	try { 
		document.execCommand("BackgroundImageCache", false, true); 
	} catch(err) {}

		
	$(".fit").click(function () { 
		
		var prevActive = $(".fit.active");
		prevActive.removeClass("active");
		prevActive.stop().animate( { width:"115px"}, "fast" );
		prevActive.find(".content").stop().animate( { width:"80px", backgroundPosition:"-80px 0px"}, "fast" );

		$(this).stop().animate( { width:"512px"}, "fast" );
		$(this).find(".content").stop().animate( { width:"477px", backgroundPosition:"0px 0px"}, "fast" );
		$(this).addClass("active");
		

	});
	$(".womens .fit.f_wideleg").click();
	$(".mens .fit.m_relaxedbootcut").click();
	
});







