$(function() {
	$('#availability_year').change(function() {
		this.form.submit();
	});
	$('#photographs').slideshow({
		paging: false,
		hide: true
	});
	$.fn.popover.defaults({
		images: {
			close: '/wp-content/themes/fhwc/images/juice/popover/close.gif',
			loading: '/wp-content/themes/fhwc/images/juice/generic/loading.gif',
			next: '/wp-content/themes/fhwc/images/juice/popover/next.gif',
			prev: '/wp-content/themes/fhwc/images/juice/popover/prev.gif'
		},
		cancelColour: '#FF9F00'
	});
	$('#photographs a.enlarge').popover({
		type: 'gallery'
	});	
	$('a.virtual_tour').click(function(event) {
		$(this).popover({
			type: 'iframe',
			action: $(this).attr('href'),
			event: event,
			width: 804,
			height: 554
		});
	});
})