$(document).ready(function(){
	
	$('.nextCal').click(function(){
		   //alert("okay");
		   $(this.rel).attr('class', "show");
		   var current=this.href;
		   var the_length=current.length;
		   var last_char=current.charAt(the_length-1);
		   $('#pricesPage'+last_char).attr('class', "hide");
	}); 
	

	$('#gallery').galleryView({
		panel_width: 440,
		panel_height: 340,
		frame_width: 40,
		frame_height: 40,
  		transition_speed: 500,
  		easing: 'easeInOutQuad',
		transition_interval: 5000,
		nav_theme: 'light'
	});

    $('#pricing td').each(function(){
        if($(this).html() == "BOOKED")
            $(this).css({'background' : '#282E39', 'color' : '#40464F'});
        if($(this).html() == "OPTION")
            $(this).css({'background' : '#FF8080', 'color' : '#333'});
    });

});











