$(document).ready(function () {
	if ($('#frmNewsletter')) {
		$('#frmNewsletter input[name=\'newsletterEmail\']').focus(function(e){
			if (this.value == 'Subscribe to our newsletter')
				this.value = '';
		});
		$('#frmNewsletter input[name=\'newsletterEmail\']').blur(function(e){
			if (this.value == '')
				this.value = 'Subscribe to our newsletter';
		});
	}
	
	if ($('#frmHotel #cmbDestination')) {
		$('#frmHotel #cmbDestination').change(function() {
			if ($(this).val())
				window.location = $(this).val();
		});
	}
});