
$(document).ready(function()
{
	var showPane=function(){
		$("#firstpane4 div.menu_needhelp").css({backgroundImage:"url(down.png)"}).next("div.menu_help1").slideDown(300);
       	$("#firstpane4 div.menu_needhelp").siblings().css({backgroundImage:"url(left.png)"});
	};
	
	var hidePane=function(){	
     $("#firstpane4 div.menu_needhelp").css({backgroundImage:"url(down.png)"}).next("div.menu_help1").slideUp(300);
     $("#firstpane4 div.menu_needhelp").siblings().css({backgroundImage:"url(left.png)"});
     };	
 
     var mouseinmenubody=false;
  	$("#firstpane4 div.menu_needhelp").mouseover(showPane);

     $("#firstpane4 div.menu_needhelp").mouseout(function(){
     setTimeout(function(){;if(!mouseinmenubody)hidePane();},200);
     });
     $("#menu_help1").mouseenter(function(){    
      mouseinmenubody=false;
      $(this).mouseleave(function(){mouseinmenubody=false;hidePane();});
     });
	//slides the element with class "menu_help1" when mouse is over the paragraph
	$("#secondpane div.menu_needhelp").mouseout(function()
    {
	     $(this).css({backgroundImage:"url(down.png)"}).next("div.menu_help1").slideDown(300).siblings("div.menu_help1").slideDown("slow");
         $(this).siblings().css({backgroundImage:"url(left.png)"});
	});
});

