jQuery(document).ready(
	
	/*
	This function gets loaded when all the HTML, not including the portlets, is
	loaded.
	*/
	
	function() {
		jQuery('#mycarousel').jcarousel();
		
		jQuery(".myMenu").buildMenu(
			{
				template:false,
				additionalData:"pippo=1",
				menuWidth:200,
				openOnRight:false,
				menuSelector: ".menuContainer",
				iconPath:"ico/",
				hasImages:false,
				fadeInTime:100,
				fadeOutTime:100,
				adjustLeft:2,
				minZindex:"auto",
				adjustTop:10,
				opacity:.95,
				shadow:false,
				closeOnMouseOut:true,
				closeAfter:400,
				openOnClick:false
			});
		
	}
);