var Home = new function() {
	var urlmodulo="indexf9ea.html?mod=home";
	
	this.galeria = function(id) {
		document.location.href="indexfdec.html?mod=gallery&amp;exec=det&amp;id="+id;
	};
	
	this.tour = function(id) {
		document.location.href="indexa897.html?mod=tour&amp;exec=rpt&amp;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);
		document.location.href="indexf9ea.html?mod=home";
	};

}
