$(document).ready(function(){
	if($("#menuLeft")) {		
		$("#menuLeft ul.subMenu").hide();
		$("#menuLeft li.subMenuItem a[rel=open]").toggle(function() {			
				$(this).next("ul.subMenu").slideDown(200);
				}, function() {
								$(this).next("ul.subMenu").slideUp(500);
							});
		
	}
});
