var Home = new function() {
	var urlmodulo="index.php?mod=home";
	
	this.galeria = function(id) {
		document.location.href="index.php?mod=gallery&exec=det&id="+id;
	};
	
	this.tour = function(id) {
		document.location.href="index.php?mod=tour&exec=rpt&id="+id;
	};

	this.newsletter = function() {
		var url = urlmodulo+"&exec=getregister";
		var params = Form.serialize("frmNletter");
		var target = 'newsError';

		var ajax = new Ajax.Updater(
			{success: target},
			url,
			{	method: 'post', 
				parameters: params,
				evalScripts: true,
				onComplete: function(res) { 
				},
				onLoading: function(res) { 
					$(target).innerHTML = "<img src='images/loading.gif'/>"; 
				},
				onFailure: function() { 
					$(target).innerHTML = "An error occurred"; 
				} 
			});
	};	
	
	this.mensaje = function(msg) {
		alert(msg);
		$("email").value="";
		//document.location.href="index.php?mod=home";
	};

}