/*
 * jQuery 1.2.3 - New Wave Javascript
 *
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008-02-06 00:21:25 -0500 (Wed, 06 Feb 2008) $
 * $Rev: 4663 $
 */
 //slides the element with class "menu_body" when mouse is over the paragraph

<!--//---------------------------------+
//  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 mouse is over the paragraph
	$("#secondpane p.communitiesnav_head").click(function()
    {
	     $(this).css({backgroundImage:"url()"}).next("div.communitiesnav_body").slideDown(500).siblings("div.communitiesnav_body").slideUp("slow");
         $(this).siblings().css({backgroundImage:"url()"});
	});
});
