// JavaScript Document
$("#firstpane .content1:eq(0)").show();
$(document).ready(function()
{
	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	$("#firstpane p.title1").click(function()
    {
		$(this).css({backgroundImage:"url(/template/images/t01.jpg)"}).next("div.content1").slideToggle(300).siblings("div.content1").slideUp("slow");
       	$(this).siblings().css({backgroundImage:"url(/template/images/t02.jpg)"});
	});
	//slides the element with class "menu_body" when mouse is over the paragraph
	$("#secondpane p.title1").mouseover(function()
    {
	     $(this).css({backgroundImage:"url(/template/images/t01.jpg)"}).next("div.content1").slideDown(500).siblings("div.content1").slideUp("slow");
         $(this).siblings().css({backgroundImage:"url(/template/images/t02.jpg)"});
	});
});