$(document).ready(function(){
	$("#loading").ajaxStart(function(){
		$(this).show();
	});
	$("#loading").ajaxStop(function(){
		$(this).hide();
	});	
	
	$(".leftMenu1").bind("click", function(){
		if ($("#cataloguePR"+$(this).attr("name")).css("display") == "none"){
			$("#cataloguePR"+$(this).attr("name")).show("slow");
		}else{
			$("#cataloguePR"+$(this).attr("name")).hide("slow");
		}
	});
	
});