$(document).ready(function(){
	
  /*
  $(".first_sub_menu_item").each(function(){
     $(this).parent().parent().parent().find(".main_category").attr("href", $(this).attr("href"));    
  });	                   */
	
  $(".main_category").bind("click", function(e) {
		$(this).attr("href", $(this).parent().find("a.first_sub_menu_item").attr("href"));
    $(".menucard_subcategory").hide("fast");
		$(this).parent().find("ul").show("fast");
	});

});

