jQuery(document).click(function(){
	

	var prevHash = false;
	setInterval(function(){
		if (window.location.hash != prevHash) {
			prevHash = window.location.hash;
			jQuery('#product-' + prevHash.substring(1)).fadeIn('normal').siblings().hide();
			
		}
	}, 100);

	// animations
	jQuery('#product-selector a').click(function(){
		jQuery('#product-selector a').removeClass('active');
		jQuery(this).addClass('active');
		//$(this).animate({top:'0'}, 200);
		jQuery.scrollTo('240px', 500);
	}).hover(function(){
		//$(this).animate({top:'-3px'}, 100);
	}, function(){
		//$(this).animate({top:'0'}, 100);
	});
});

