$(document).ready(function(){
    /*
     * Validando el e-mail del index
     *************************************/
    $("#frmSuscripcion").validationEngine()
    /*
     * Este codigo borra el texto de los campos:
     *           Buscar y Suscribirse
     *******************************************/
    $('#txtSearch').click(function() {
        //alert ('hice click');
        valueCompair(this, $(this).get(0).value);
    });
    $('#email').click(function() {
        valueCompair(this, $(this).get(0).value);
    });
	$('#email').keyup (function(event) {
							//	alert(event.which );
				  if (event.which == '13') 
				  {	//	alert('Handler for .keypress() called.');
				 // alert('fffffff');
				  	//	contacto ($('#frmSuscripcion').validationEngine('validate'))
				  }

	  
	});
});

function valueCompair($Element, $value)
{
    // para Español
    //alert ('Estoy comparando los values');
    if($value == "buscar ...")
    {
        $($Element).attr('value', '');
    }
	else
	{
        if($value == "su direccion de email ...")
        {
            $($Element).attr('value', '');
        }
    }
    // para Ingles
    if($value == "search ...")
    {
        $($Element).attr('value', '');
    }
	else
	{
        if($value == "your email address ...")
        {
            $($Element).attr('value', '');
        }
    }
}

