<!--// Preferiti //-->
function bookmarksite(title, url) {
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}
<!--// -------- //-->

<!--// Ajax Menu Accordion//-->
$(document).ready(function()
{
	//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	$("#firstpane p.menu_head").click(function()
    {
		$(this).css({backgroundImage:"url(img/go-down.png)"}).next("div.menu_body").slideToggle(600).siblings("div.menu_body").slideUp("slow");
       	$(this).siblings().css({backgroundImage:"url(img/go-right.png)"});
	});
	//slides the element with class "menu_body" when mouse is over the paragraph
	$("#secondpane p.menu_head").mouseover(function()
    {
	     $(this).css({backgroundImage:"url(down.png)"}).next("div.menu_body").slideDown(800).siblings("div.menu_body").slideUp("slow");
         $(this).siblings().css({backgroundImage:"url(img/go-right.png)"});
	});
});
<!--// ---------------- //-->




