// JavaScript Document


$(document).ready(function(){			

	$("#royal-slider").royalSlider({
	    captionShowEffects:["moveleft", "fade"],
	    directionNavAutoHide: true,
		slideshowEnabled: true
	    /* other options go here, view javascript options to learn more */			
	}); 

	$('.multi-structure').hide();

	$('.show-multi').click(function() {
		$('.multi-structure').show("fast");
		$('.show-multi').hide("slow");
		});
	
	$('.single-structure').hide();

	$('.show-singles').click(function() {
		$('.single-structure').show("fast");
		$('.show-singles').hide("slow");
		});
	
	$(".buy-ins tr:even").addClass("zebra");
																									
});

// Hide empty cells in the calendar

$('td:empty').css('background-color', '#fffdf7');
 
