function limpiar(id){
	$("#"+id).val('');
}
// JavaScript Document			//This hides the inline content if JavaScript is supported, but allows it to remain visible if not.
			//<![CDATA[
			document.write("<style type='text/css'>.hidden{display:none;}<\/style>");
			//]]>
			
			$(document).ready(function(){
				//Colorbox
				//Examples of Global Changes
				$.fn.colorbox.settings.bgOpacity = "0.9";
				//Examples of how to assign the ColorBox event to elements.

				$("a[rel='mapa']").colorbox({iframe:true,transition:"fade",fixedWidth:"550px", fixedHeight:500});
				
				
			$("#suscripcion").click(function(){	
	
			var dataString = 'email=' +  encodeURIComponent($("#email_suscriptor").val()) ;
	
			var urlLink="/newsletter/verificar.php";
	
				$.ajax({
	
				  type: "POST",
	
				  url: urlLink,
	
				  data: dataString,							  
	
				  success: function(datos){ 
	
					  if(datos=='0'){
							$("#frm_suscripcion").submit();
						}	
	
					else if($.trim($("#email_suscriptor").val())==''){
							alert('Ingrese su email');	
							$("#email_suscriptor").focus();
						}	
					else
							alert('Email ya existe');						


				 }	
			 });		

		});

//------------------------------------------
$("#texto_buscar").attr("style","");
	
	$("#texto_buscar").blur(function () {
        $("#texto_buscar").attr("style","");
    });
	$("#texto_buscar").focus(function () {
        $("#texto_buscar").attr("style","");
    }); 
	});
