
function toggleCategoryDisplay(intCatID){
	if(intCatID == 1){
		jQuery(".jcarousel li").removeClass("hideProducts");	
	}else{
		jQuery(".jcarousel li").addClass("hideProducts");	
		jQuery(".jcarousel li.Product_Category_"+intCatID).removeClass("hideProducts");
		jQuery("#example_3_content").css('left',"0px");
	}
}
