function map1(){
	var myLatlng = new google.maps.LatLng(44.942326, 26.087184);

	var myOptions = {
		zoom: 12,
		center: myLatlng,
		mapTypeId: google.maps.MapTypeId.ROADMAP
	}

  	var map = new google.maps.Map(document.getElementById("mapDiv1"), myOptions);

	var marker = new google.maps.Marker({
		position: new google.maps.LatLng(44.942326, 26.087184),
		map: map,
		animation: google.maps.Animation.DROP,
		title:"LUBRICANT ROM"
	});

}
function initialize() {
	map1();
}

function loadScript() {
	$('#loc-harta').prepend('<div id="mapDiv1"></div>');
	var script = document.createElement("script");
	script.type = "text/javascript";
	script.src = "http://maps.google.com/maps/api/js?sensor=false&region=RO&callback=initialize";
	document.body.appendChild(script);
}

function ProdusLink()
{
	$('.tproduse tr').each(function() {
	var produs = $(this).find("td:first").html();
	$(this).find("td:first").html('<a href="mailto:office@lubricant.ro?subject='+produs+'">'+produs+'</a>');
});
}
