window.addEvent("domready", function(){								 
	$('menu').getElements('a').each(function(el){
		el.set('morph', {duration: 200});
		el.addEvents({
			'mouseenter': function(){
				this.morph('.navover');
			},
			'mouseleave': function(){
				this.morph('.navup');
			}
		});
	});
});

 jQuery.noConflict();

jQuery(document).ready(function()
{
  //hide the all of the element with class msg_body
  jQuery(".msg_body").hide();
  //toggle the componenet with class msg_body
  jQuery(".msg_head").click(function()
  {
    jQuery(this).next(".msg_body").slideToggle(600);
  });
});

function initialize() {
		var latlng = new google.maps.LatLng(43.769575,11.264741);
		var settings = {
			zoom: 16,
			center: latlng,
			mapTypeControl: true,
			mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.HORIZONTAL_BAR},
			navigationControl: true,
			navigationControlOptions: {style: google.maps.NavigationControlStyle.ZOOM_PAN},
			mapTypeId: google.maps.MapTypeId.ROADMAP
    };
	var map = new google.maps.Map(document.getElementById("map_canvas_preform"), settings);
	var companyLogo = new google.maps.MarkerImage('/images/logo-google-maps3.png',
	new google.maps.Size(425,125),
	new google.maps.Point(-41,0)
);
	var companyPos = new google.maps.LatLng(43.769593, 11.26478);
	var companyMarker = new google.maps.Marker({
	position: companyPos,
	map: map,
	icon: companyLogo,
	title:"Tuscany Bike Tours",
	zIndex: 4
});
}