$(document).ready( function(){
 			$('.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");
   });

     $("h2 a.help").click(function()
 	{
 		var locs =  $(this).attr("id")+"p";
    	if ( $("p#"+locs).hasClass("on") ){
    		 $("p#"+locs).removeClass("on");
    	}
    	else {
 			$("p#"+locs).addClass("on");
 		}
 });

 } );

