$(document).ready(function() {				$(".category").click(function(){		var thisid = $(this).attr("id");		$(".submenu").slideUp('slow',function(){			$(this).parent("dd").removeClass('open-menu').addClass('close-menu');		});				if($(this).parent("dd").attr('class') == 'close-menu'){						/*$.post(site+"/category.php", { c: thisid }, function(data) {				$("#"+thisid).parent("dd").children("div").html(data);				*/									$("#"+thisid).parent("dd").addClass('open-menu').removeClass('close-menu');					$("#"+thisid).parent("dd").children("div").slideDown('slow');			/*});*/		}				return false;			});		$(".basket").click(function(){				$.post(site+"/basket.php", { id: $(this).attr("id") , size: $(this).attr("rel") }, function(data){			$("#basket").html(data);		})				return false;			})		$("#basket-box img").live('click',function(){				$.post(site+"/basket.php", { rem: $(this).attr("id") , size: $(this).attr("rel") }, function(data){			$("#basket").html(data);		})				return false;			})		$("#postf1").click(function(){		document.forms["postf1"].submit();		return false;	})		$("#postf2").click(function(){		document.forms["postf1"].submit();		return false;	})		});    $(function() {        $('.product-img a, #image-list a').lightBox();    });
