$(function() {
    $(".topPhotos").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		visible: 5,
		auto: true,
		timeout: 3000
// 		speed: 1000
		});
	
	
	 $('#slideshowGo')  
	.cycle({ 
		fx:     'fade', 
		speed:  '900', 
		timeout: 9000, 
		pager:  '#promopages2' 
	});
	
	//datepicker
	$.datePicker.setDateFormat('mdy','/');
	$('.datepicker').datePicker();
	
	//print
	$('a.print').click(function(){
		window.print();
	});
	
	// append date to link for "Book Tee Times"
	$('.datepicker').bind('change', function() {
		var tto_link = $('#tto-url').attr('href') + "&teedate=" + $(this).val();	
		$('#bookBox a').attr('href',tto_link);
	});
	
	// initialize fancybox
	$('a.fancybox-image').fancybox();
	
	// initialize fancybox
	$('a.fancybox-video').fancybox({
		'autoDimensions' : 'false',
		'width'	: 700,
		'height' : 500,
		'type' : 'iframe'
	});
	
});

