
$(document).ready(function()

{
//default first tab opens
$('.menu_body:eq(0)').hide();
$('.prize_body').hide();
//default first tab opens END
	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	$("#firstpane p.menu_head").click(function()
    {
		$(this).css({backgroundImage:"url()"}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
       	$(this).siblings();
	});
	//slides the element with class "menu_body" when mouse is over the paragraph
	$("#secondpane h4.menu_head").click(function()
    {
	     $(this).css({backgroundImage:"url()",backgroundColor:""}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
         $(this).siblings();
	});
	$("#thirdpane img.prize_head").click(function()
    {
	     $(this).css({backgroundImage:"url()",backgroundColor:""}).next("div.prize_body").slideToggle(300).siblings("div.prize_body").slideUp("slow");
         $(this).siblings();
	});

});

