$(document).ready( function(){
$(".latestproducts div:nth-child(4)").addClass('endrow');
$(".featuredproducts div:nth-child(4)").addClass('endrow');
$(".list.products div:nth-child(4)").addClass('endrow');
$('#sidenav li:has(> ul)').addClass('this');
$("#sidenav li").mouseover(function(){
    	if ( $(this).hasClass('this') ){
    	}
    	else {
      	$(this).addClass('thishover');
      }
    })
    $("#sidenav li").mouseout(function(){
    	if ( $(this).hasClass('thishover') ){
    	      $(this).removeClass('thishover');
    	}
    	else {
      }
    })
 			$('.product-description .images').find('> a').not("#imglink2").lightBox({fixedNavigation:true});
 			$('.product-description .images a#imglink2').lightBox({fixedNavigation:true});

   $(".product-description .smallimgs").click(function() {
   	var locs =  "main"+$(this).attr("id");
	$(".product-description .images .mainimgs").css("visibility", "hidden");
	$(".product-description .images img[id="+locs+"]").css("visibility", "visible");
   });
 } );
