;(function($){
$.fn.googleMap=function(address,options){
	var defaults={lat:18.23,long:-66.39,zoom:16,mapTypeId:google.maps.MapTypeId.ROADMAP};
	options=$.extend(defaults,options||{});	
	var center=new google.maps.LatLng(options.lat,options.long);
	var map=new google.maps.Map(this.get(0),$.extend(options,{'center':center}));
	var geocoder = new google.maps.Geocoder();
	geocoder.geocode({'address':address},
					 function(results,status){
						 if(status==google.maps.GeocoderStatus.OK){
							 map.setCenter(results[0].geometry.location);
							 var infowindow=new google.maps.InfoWindow({content:"<h4>"+address+"</h4>"});
							 var marker=new google.maps.Marker({map:map,position:results[0].geometry.location});
							 google.maps.event.addListener(marker,'mouseover',function(){infowindow.open(map,marker)})
							 }
							 }							 
							 );
	
	};
	//mapTypeId: ROADMAP,HYBRID,SATELLITE,TERRAIN.
	})(jQuery);
