
	$(function() {
		//Property Switch Nav Bar
		$("#tabs").tabs({
			collapsible: true,
			hide: true,
			selected: -1
		});
		//Quick Res Bar
		$('#datepicker').datepicker({
			showOn: 'button',
			buttonImage: 'images/calendar.gif',
			buttonText: 'Select Check In Date',
			buttonImageOnly: true,
			numberOfMonths: 2
		});
		$('#datepicker2').datepicker({
			showOn: 'button',
			buttonImage: 'images/calendar.gif',
			buttonText: 'Select Check Out Date',
			buttonImageOnly: true,
			numberOfMonths: 2
		});	
		// Body Sliding Tabs
  
		//Sub Slideshow
		$("#ft").jqFancyTransitions({effect:'curtain', strips: 35, stripDelay:50, top: 50, opacity:1, width: 1200, height: 430, navigation: true, links: false });	
	   
$(document).ready(function() {
 
	//ACCORDION BUTTON ACTION	
	$('div.accordionButton').click(function() {
		$('div.accordionContent').slideUp('normal');	
		$(this).next().slideDown('normal');
	});
 
	//HIDE THE DIVS ON PAGE LOAD	
	$("div.accordionContent").hide();
 
});	
	});

