<!--//--><![CDATA[//><!--
$(document).ready(function(){
    
     $("#mapasGoogle").hide();   
     vermapa(0);
});

//MAPA DE GOOGLE ESPAÑOL
var mapasgoogle_es=new Array();  
mapasgoogle_es = [ '<iframe width="435" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.es/maps?f=q&amp;source=s_q&amp;hl=es&amp;geocode=&amp;q=San+Francisco,+Heredia,+Costa+Rica&amp;sll=40.396764,-3.713379&amp;sspn=13.244891,19.138184&amp;ie=UTF8&amp;hq=&amp;hnear=San+Francisco,+Heredia,+Costa+Rica&amp;ll=9.994128,-84.129001&amp;spn=0.008368,0.009345&amp;z=14&amp;output=embed"></iframe><br /><small><a href="http://maps.google.es/maps?f=q&amp;source=embed&amp;hl=es&amp;geocode=&amp;q=San+Francisco,+Heredia,+Costa+Rica&amp;sll=40.396764,-3.713379&amp;sspn=13.244891,19.138184&amp;ie=UTF8&amp;hq=&amp;hnear=San+Francisco,+Heredia,+Costa+Rica&amp;ll=9.994128,-84.129001&amp;spn=0.008368,0.009345&amp;z=14" style="color:#0000FF;text-align:left" target="_bank" >Ver mapa m&aacute;s grande</a></small>',//mapa 1
					     
		'<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.es/maps?f=q&amp;source=s_q&amp;hl=es&amp;geocode=&amp;q=Carnes+Don+Melchor&amp;aq=&amp;sll=9.930607,-84.146342&amp;sspn=0.059435,0.074673&amp;ie=UTF8&amp;hq=Carnes+Don+Melchor&amp;hnear=&amp;ll=9.932351,-84.127616&amp;spn=0.02866,0.037336&amp;z=14&amp;iwloc=A&amp;cid=12387921772557051079&amp;output=embed"></iframe><br /><small><a href="http://maps.google.es/maps?f=q&amp;source=embed&amp;hl=es&amp;geocode=&amp;q=Carnes+Don+Melchor&amp;aq=&amp;sll=9.930607,-84.146342&amp;sspn=0.059435,0.074673&amp;ie=UTF8&amp;hq=Carnes+Don+Melchor&amp;hnear=&amp;ll=9.932351,-84.127616&amp;spn=0.02866,0.037336&amp;z=14&amp;iwloc=A&amp;cid=12387921772557051079" style="color:#0000FF;text-align:left" target="_bank" >Ver mapa m&aacute;s grande</a></small>']; 
		
		
//MAPA DE GOOGLE EN INGLES

var mapasgoogle_en=new Array();  
mapasgoogle_en = [ '<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.es/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Carnes+Don+Melchor&amp;aq=&amp;sll=9.994128,-84.129001&amp;sspn=0.060015,0.074673&amp;g=San+Francisco,+Heredia,+Costa+Rica&amp;ie=UTF8&amp;ll=9.994112,-84.128889&amp;spn=0.028951,0.037336&amp;z=14&amp;iwloc=A&amp;cid=17051503612916017934&amp;output=embed"></iframe><br /><small><a href="http://maps.google.es/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Carnes+Don+Melchor&amp;aq=&amp;sll=9.994128,-84.129001&amp;sspn=0.060015,0.074673&amp;g=San+Francisco,+Heredia,+Costa+Rica&amp;ie=UTF8&amp;ll=9.994112,-84.128889&amp;spn=0.028951,0.037336&amp;z=14&amp;iwloc=A&amp;cid=17051503612916017934" style="color:#0000FF;text-align:left" target="_bank" >View Larger Map</a></small>',//mapa 1
					     
		'<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.es/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Carnes+Don+Melchor&amp;aq=&amp;sll=9.994128,-84.129001&amp;sspn=0.060015,0.074673&amp;g=San+Francisco,+Heredia,+Costa+Rica&amp;ie=UTF8&amp;ll=9.932351,-84.127616&amp;spn=0.014478,0.018668&amp;z=14&amp;iwloc=A&amp;cid=12387921772557051079&amp;output=embed"></iframe><br /><small><a href="http://maps.google.es/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Carnes+Don+Melchor&amp;aq=&amp;sll=9.994128,-84.129001&amp;sspn=0.060015,0.074673&amp;g=San+Francisco,+Heredia,+Costa+Rica&amp;ie=UTF8&amp;ll=9.932351,-84.127616&amp;spn=0.014478,0.018668&amp;z=14&amp;iwloc=A&amp;cid=12387921772557051079" style="color:#0000FF;text-align:left" target="_bank" >View Larger Map</a></small>']; 

//-----------------------------------
function vermapa(idmap)
{
	$("#mapasGoogle").hide();
	var idm= $("#idm").val();
	
 if(idm=='en'){
 	$("#mapasGoogle").html(mapasgoogle_en[idmap]);
 }
 else
 {
 $("#mapasGoogle").html(mapasgoogle_es[idmap]);
 }

$("#mapasGoogle").slideDown(2000);

}
//*************************************


