$(document).ready(function() {
	$("div.subcategory").each(function() {
		$(this).children("div.product:gt(0)").addClass("hiddenProduct");
	});
	$("a.thumnailLink").click(function() {
		var targetId = this.href.split("#")[1];
		$("div#"+targetId).parents("div.subcategory").children("div.product").addClass("hiddenProduct");
		$("div#"+targetId).removeClass("hiddenProduct");
		$("div#"+targetId+" a.thickbox img").css("opacity","0");
		$("div#"+targetId+" a.thickbox img").fadeTo(300,1);
		var pos = $("div#"+targetId).offset().top;
		$('html,body').animate({scrollTop: pos}, 500);
		return false;
	});
	
	$("a.subcategoryLink").click(function() {
		var targetId = this.href.split("#")[1];
		var pos = $("div#"+targetId).offset().top;
		$('html,body').animate({scrollTop: pos}, 500);
		return false;
	});
	
});
