$(document).ready(function()
{

	//slides the element with class "menu_body" when mouse is over the paragraph
	$("#leftNav ul li").mouseover(function()
    {
	     $(this).css({backgroundImage:"url()"}).next("div.menu_body").slideDown(500).siblings("div.menu_body").slideUp("slow");
	});
	
	
});
