$(function(){
	var my_url = window.location.href.split("/");
	var choosen_collection = my_url[4];

	$("div#designers").jScrollPane({scrollbarWidth:7});
	$("div#designers")[0].scrollTo("#" + choosen_collection);
	$("#" + choosen_collection + " a").css({color : "#ffffff"});

	if(my_url.length > 6)
		$("div#brand_name").html("<a href='/shop/"+ choosen_collection +"/' title=''>" + $("div#brand_name").html() + "</a>");

	$("div.content-body-catalog-item-info-dropdown").hover(function(){
		$(this).children("ol").show();
	}, function(){
		$(this).children("ol").hide();
	});
	
	$("div.content-body-catalog-item-info-dropdown").children("a").click(function(){
		return false;
	});
	
	$("div#content-body ol li a").hover(function(){
		$(this).children("img").stop().animate({opacity : .35}, 0);
	}, function(){
		$(this).children("img").animate({opacity : 1}, 0);
	});
	
	/*$("div#side_bar ul li a").hover(function(){
		$(this).stop().animate({color : "#ffffff"}, 375);
	}, function(){
		$(this).animate({color : "#404040"}, 375);
	});*/
});
