// JavaScript Document - case studies accordian
<!--//---------------------------------+
//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use
// --------------------------------->
$(document).ready(function()
{
	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	//$("#firstpane div.menu_head").click(function()
    //{
		//$(this).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
       //	document.getElementById('arrow1').src = 'images/large-arrow-down.gif';
		
       ///$("#firstpane div.menu_head").toggle(
													
			   ///function()
			   ///{$(this).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
                //$('#arrow1').attr('src','images/large-arrow-right.gif');
				///}
				///, function() 
				///{$(this).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideDown("slow");
                // $('#arrow1').attr('src','images/large-arrow-down.gif');
				///}
		///);
///});
	
//slides the element with class "menu_body" when mouse is over the paragraph
$("#firstpane div.menu_head").click(function()
{
    $(this).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
    //$(this).siblings().css({backgroundImage:"url(left.png)"});
});

});
