$(document).ready(function() {

	// Home & hotel detail Carousel
	$('#slideshow').smallslider({
	switchTime:	1500,
	time:		5000
	});

	// for any input with name of checkin_date, add jquery datepicker
	$('#checkin_date').datepicker({ minDate: '1', maxDate: '+5m' });
	$('#checkin_date_submit').datepicker({
		minDate: '1',
		maxDate: '+5m',
		onSelect: function(dateText, inst) { 
			$('#form_checkin_date_footer').submit();
		}
	});
	
	// Link POI table rows
	$('.tablegrid.poi tr').click(function() {
        var href = $(this).find("a").attr("href");
        if(href) {
            window.location = href;
        }
    });
    // Link Rates table rows
	$('.tablegrid.rates tr').click(function() {
        var href = $(this).find("a").attr("href");
        if(href) {
            window.location = href;
        }
    });

});
