// JavaScript Document

$(document).ready(function() {
	if ($("#map").length > 0) {	
		 var html = "<p style='font-size:1em;'><b>MISHURO</b><br>";
			html+= "Pedro alcatarena 6 bajo, 31014 Pamplona - Iru&ntilde;a<br><br>";
			html+= "Tfn. + 34 948 147 143 - 34 948 382 587.<br>";
			html+= "Fax. + 34 948 382 588<br>";
			html+= "Movil&nbsp;:&nbsp;637 404 054<br>";
			html+= "Email&nbsp;:&nbsp;info@mishuro.com</p>";
		
		var html2 = "<img width='150' height='150' src='imgs/mishuro.jpg'>";
		var infoTabs = [ 
          new GInfoWindowTab("Info", html),
		  new GInfoWindowTab("Imagen", html2) 
		 
        ]; 
		var map=$('#map').jmap('init',{'mapType':'map','mapZoom':16,'mapCenter':[42.823925, -1.654376],'mapEnableType':true});
		
		$('#map').jmap('AddMarker', {'pointLatLng': [42.823925,-1.654376],'pointHTML':infoTabs});
		
		
       
	

    }
	if ($("#contact").length > 0) {	
	
		if ($("#nombre").val()=="") $("#nombre").val("Su nombre...");
		if ($("#email").val()=="") $("#email").val("Su email...");
		if ($("#asunto").val()=="") $("#asunto").val("Asunto...");
		if ($("#mensaje").val()=='') $("#mensaje").val("Mensaje...");
		$("input").click(function(){
			$(this).val("");
			$(this).next(".error").remove();
		});
		$("textarea").click(function(){
			$(this).val("");
			$(this).next(".errorarea").remove();
		});
		
		 
	}
	
     
		
});