/* ##########################################
   ##                                      ##
   ##  Developed by: Serpy | Kay           ##
   ##  File: map.js                        ##
   ##  Last Updated: October 26, 2009      ##
   ##  									   ##
   ##########################################
*/

function initialize() {
		var latlng = new google.maps.LatLng(40.973203, -5.680762);
		var settings = {
			zoom: 18,
			center: latlng,
			mapTypeControl: true,
			mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
			navigationControl: true,
			navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
			mapTypeId: google.maps.MapTypeId.HYBRID
    };
	var map = new google.maps.Map(document.getElementById("map_canvas"), settings);
	
	var companyLogo = new google.maps.MarkerImage('images/logo.png',
	new google.maps.Size(100,50),
	new google.maps.Point(0,0),
	new google.maps.Point(50,50)
	);
	var companyShadow = new google.maps.MarkerImage('images/logo_shadow.png',
	new google.maps.Size(130,50),
	new google.maps.Point(0,0),
	new google.maps.Point(65, 50)
	);
	
	var companyPos = new google.maps.LatLng(40.973203, -5.680762);
  	var companyMarker = new google.maps.Marker({
      position: companyPos,
      map: map,
	  icon: companyLogo,
	  shadow: companyShadow,
      title:"Althea"
  	});
	}