$(document).ready(function(){

	$("#catalog_menu > li > a").click(function() {
		
		if ($(this).parent().children(".level2").html()) {
			
			$(this).parent().children(".level2").slideDown();
			location.replace($(this).parent().children(".level2").children("li").children("a").attr("href"));
			return false;	
		} else {
			return true;
		}
	
	
	});





});
