$().ready(function(){
	$('#fijo_contenido div div:last').hide();
	$("input[name$='pais']").each(function(i) {
		if (this.value == '')
			this.value = 'Pais / Country';
	});
	$("input[name$='_area']").val("Ciudad / City");
	$("input[name$='_telefono']").val("Telefono / Phone");
	$("input[name$='_pais']").focus(function () {
		var valor = this.value;
		if (valor == 'Pais / Country')
			this.value = '';
    });
	$("input[name$='_area']").focus(function () {
		var valor = this.value;
		if (valor == 'Ciudad / City')
			this.value = '';
    });
	$("input[name$='_telefono']").focus(function () {
		var valor = this.value;
		if (valor == 'Telefono / Phone')
			this.value = '';
	});
	$("form").submit(function () {
		$('form :text').each(function(i) {
			var valor = this.value;
			if (valor == 'Pais / Country' || valor == 'Ciudad / City' || valor == 'Telefono / Phone')
			this.value='';
		});
    });
});