$(document).ready(function(){

    // JUMP TO FLOORS
    $('#about').click(
    	function() {
      		$("#about").addClass("current");
      		$("#contact").removeClass("current");
      		$("#photographs").removeClass("current");
      		$("#movie").removeClass("current");
      	}
    );
    $('#contact').click(
    	function() {
      		$("#about").removeClass("current");
      		$("#contact").addClass("current");
      		$("#photographs").removeClass("current");
      		$("#movie").removeClass("current");
      	}
    );
    $('#photograhps').click(
    	function() {
      		$("#about").removeClass("current");
      		$("#contact").removeClass("current");
      		$("#photographs").addClass("current");
      		$("#movie").removeClass("current");
      	}
    );
    $('#movie').click(
    	function() {
      		$("#about").removeClass("current");
      		$("#contact").removeClass("current");
      		$("#photographs").removeClass("current");
      		$("#movie").addClass("current");
      	}
    );
    
	// COLLAPSABLE PANES
	//hide room_body after the first one
	$(".room_list .room_body:gt(0)").hide();
	
	//hide room li after the 5th
	//$(".room_list li:gt(4)").hide();

	
	//toggle room_body
	$(".room_head").click(function(){
		$(this).next(".room_body").slideToggle(500)
		return false;
	});

	//collapse all rooms
	$(".collpase_all_room").click(function(){
		$(".room_body").slideUp(500)
		return false;
	});

	//show all rooms
	$(".show_all_room").click(function(){
		$(this).hide()
		$(".show_recent_only").show()
		$(".room_list li:gt(4)").slideDown()
		return false;
	});

	//show recent rooms only
	$(".show_recent_only").click(function(){
		$(this).hide()
		$(".show_all_room").show()
		$(".room_list li:gt(4)").slideUp()
		return false;
	});

	
	
	// NEXT SCRIPT
	
});
