$(document).ready(function(){
	$("#brands_listing h3.menu_head").click(function(){
		$(this).css().next("ul.menu_body").slideToggle(300).siblings("ul.menu_body").slideUp("slow");
	});
	setTimeout(function(){
		   $("[id$=Message]").fadeOut("slow", function () {
		   $("[id$=Message]").remove();
		       }); }, 3000);
});

