var ChangeLink = function(country){
	this.count       = country;
	this.bookingLink = '';
};

ChangeLink.prototype = {
	
	getLink:function(){
		switch(this.count)
		{
			case 'de':
				this.bookingLink = 'http://res.sandals.de/search/Default.aspx?plcode=svg';
			break;
			
			case 'it':
				this.bookingLink = 'http://res.sandalsresorts.it/search/Default.aspx?plcode=svi';
			break;
		}
		
		//return this.bookingLink;
		
		$('#navReservations a').attr('href',  this.bookingLink);
		$('#sect_1 a').attr('href',  this.bookingLink);
		
	},
	
		
};


