<!--//---------------------------------+
// --------------------------------->
jQuery.noConflict();
jQuery(document).ready(function()
{
	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	jQuery("#firstpane div.menu_head").click(function()
    {
		jQuery(this).css({backgroundImage:"url(images/download_img_product_bullet.gif)"}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
       	jQuery(this).siblings().css({backgroundImage:"url(images/download_img_product_bullet_plus.gif)"});
	});
	//slides the element with class "menu_body" when mouse is over the paragraph
});

