$(document).ready(function() {
		 maxWidth = 210;
		 minWidth = 75;
		 $(".parentLabel").click(
			 function(){
				  len = $(".subMenu").length;
				  if(len > 0){
						  $(".subMenu").animate({width: "hide"}, { queue:false, duration:400 });
				  }
				  if($(this).parent().find("div.subMenu").length > 0 && $(this).parent().find("div.subMenu").get(0).style.display == "none"){
					 $(this).parent().find("div.subMenu").animate({width: "show"}, { queue:false, duration:400 });
					 lastBlock = $(this).parent().find("div.subMenu");
				 }
			 }
		);
	});
