$(document).ready(function()
{
	$(".topcate").hide();
	$("#sam_1_j").show();
	$("#sam_1").css('backgroundColor','#BD1550');
	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	$("#firstpane p.menu_head").click(function()
    {
		$(".menu_head").css('font-weight','bold'); 
		$(".menu_head").css('color','');
		$(this).css('font-weight','bold'); 	
		$(this).css('color','#FFFFFF'); 	
		$(this).css({backgroundImage:"url(images/menu-over.jpg)"}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
		$(this).siblings().css({backgroundImage:"url(images/bullet.jpg)"});
	});
	$(".title_men").click(function()
	{
		var id=this.id;
		var hidval=$("#s_top").val();
		var idtop="#"+id+"_j";
		$(".title_men").css('backgroundColor',''); 
		$(this).css('backgroundColor','#BD1550'); 
		
		for(var no=1;no<hidval;no++){
			var ids="#sam_"+no+"_j"
			if(idtop!=ids)
			{
				
				$(ids).hide();
			}
			else
			{
				$(".topcate").hide();
				
				$(idtop).show();
			}
		}
		
	});
						   
});
