
		//$(document).ready(function(){
		jQuery.noConflict();
(function($) {
  $(function() {
			/* Click redirect */
			$(".zoom img").click(function(){
				$(".product-preview").find("a").click();
			});		
			
			/* Selectbox */
			
			var focused=false;

			$("body").click(function(){
				if (!focused) $(".dropdown").hide();
			});		
			
			$(".current-selection").html($(".dropdown ul .selected").html());

			$(".current-selection").mouseover( function() {
				focused=true;
			});
			
			$(".current-selection").mouseout( function() { 
				focused=false;
			});		
			
			$(".current-selection").click(function(){
				$(".dropdown").toggle();
				return false;
			});		
			
			$(".dropdown ul li").mouseover( function() { 			
				$(".dropdown ul li").removeClass("selected");
				$(this).addClass("selected");
			});		

			$(".dropdown ul li").mousedown(function(){
				$(".current-selection").html($(".dropdown .selected").html());
				$(".dropdown").hide();				
				window.location=$(this).find("a").attr("href"); 
			});		
			
					  });
})(jQuery);

