// JavaScript Document

// Controls the slideshow on the home page with a fade effect

$(document).ready(function () {
						  
	$('#slideshow').cycle('fade');
	
});

// Adds a lightbox feature to all divs with the id #room-thumbs 

$(document).ready(function() {

	$(function() {
		$('#room-thumbs a').lightBox({fixedNavigation:true});
	});

});

// Applies Zebra Striping by adding classes .rates-bg-odd and .rates-bg-even 

$(document).ready(function() {
	
	$(function() {
		   $(".rates tr:odd") .addClass("rates-bg-odd");
   });
});

$(document).ready(function() {
	
	$(function() {
		   $(".rates tr:even") .addClass("rates-bg-even");
   });
});
