//jQuery.noConflict();

(function($){


$(document).ready(function() {
	
	

	//apply the pngfix for IE 6
	$('div#logo, div#newsHeader, div#newsLetterHeader, div#specialOfferBtn').ifixpng(); 


	// configure callendar
	// In case of further configuration options please visit the following link 
	// http://docs.jquery.com/UI/Datepicker/datepicker#toptions
	
	$("#checkin").datepicker({ 
								prevText: '',
								nextText: '',
								dateFormat: 'dd/mm/yy'
							});
	
	// bind  the 'show' datepicker event to #calBtn selector
	
	$("#calBtn").click(function(){						
		$("#checkin").datepicker("show");
	});


});

// original content
})(jQuery);