$.fn.DeseoMap = function(latitude, longitude, size)
{

	if($(this).attr('id'))
	id = $(this).attr('id')
	else
	{
		unique = Math.floor(Math.random()*110);
		$(this).attr('id', 'map_'+unique);
		id = 'map_'+unique;
	}


	var myLatlng = new google.maps.LatLng(latitude, longitude);
	var myOptions = {
	  zoom: size,
	  center: myLatlng,
	  mapTypeId: google.maps.MapTypeId.ROADMAP
	}
	var map = new google.maps.Map(document.getElementById(id), myOptions);
	
	var marker = new google.maps.Marker({
		  position: myLatlng, 
		  map: map
	  });  
}
