    jQuery(document).ready(function() {
			
			//$('.products li').each( function() {
//							var getsubmenu = $(this).attr("id")
//							var outline = "#" + getsubmenu + " .frame"
//							
//							$(this).hover(
//						  		function () {		
//								//alert(outline);
//								//$(outline).css('border', '3px solid #ADADAD !important;')
//						  }, 
//						  function () {
//							$(this).find("span:last").remove();
//						  }
//						);
//							
//			});
		
		//HIDE the details
		//$('.details').hide();
		
		
		$('.products li').each( function() {
							//get id of the of the li		 
							var getsubmenu = $(this).attr("id")
							
							// Place the variables into a string
							var subcomplete = "#" + getsubmenu + " .details"
							
							//$(".products li:nth-child(1)").css('width', '320px !important')
							//$(".products li:nth-child(1)").css('height', '320px  !important')

									
							$(this).hover( function() {							
									//alert(outline);
									jQuery(subcomplete).stop().fadeIn(500);
									jQuery(this).parent('li').addClass('hover_main');
									//jQuery(subcomplete).delay(500).animate({
//    									//fadein: 500,
//										opacity: show
//									}, 500 );
									},
									function () {
									jQuery(subcomplete).hide();
									//alert("test");
									$('.details').hide();
									});
							
							});
		
		
		jQuery('.shopp-zoom').hover( function() {
									  //alert('gallery')
									  jQuery('.zoom_glass').fadeIn('fast');
									  },
									  function() {
									jQuery('.zoom_glass').fadeOut('fast');

									  });
		

		});
	
	
	
