$().ready(function(){
	$( "#llegada,#salida" ).datepicker({
		showOn: "button",
		buttonImage: "http://hotellasamericas.com.co/wp-content/themes/las-template/images/calendar.jpg",
		buttonImageOnly: true
	});
	$('.datePicker').datepicker({
		clickInput: true
		});
	$('.ui-datepicker-trigger').addClass('middletwo');
	$('.weather br').remove();
	$('li.icl-es a').html('Espa&#241;ol');
	$('.nav>ul').show();
	var defaultvalue = '';
	// clear input on focus
	$('#subscribe input[type=text]').focus(function()
	{
		if($(this).val()==$(this).attr('value'))
		{
			defaultvalue = $(this).val();
			$(this).val('');
		}
	});
	// if field is empty afterward, add text again
	$('#subscribe input[type=text]').blur(function()
	{
		if($(this).val()=='')
		{
			$(this).val(defaultvalue);
		}
	});
});

