//=============================================================
// Модуль:    limesite.js
// Дата:      20.11.2010
// Описание:   
// Copyright: (C)2010 ООО "Лайм"
//==============================================================


$.extend({  
	getUrlVars: function(){  
	    var vars = [], hash;  
	    var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');  
	    for(var i = 0; i < hashes.length; i++)  
		{  
		    hash = hashes[i].split('=');  
		    vars.push(hash[0]);  
		    vars[hash[0]] = hash[1];  
		}  
	    return vars;  
	},  
	    getUrlVar: function(name){  
	    return $.getUrlVars()[name];  
	}  
    });  


$(document).ready(function() {
	// Your code here


    //$("#accordion").accordion( { collapsible: true, active: false, fillSpace: true } );
    $("#menuaccordion").accordion( { collapsible: true, active: false, fillSpace: false, autoHeight: false } );
    $("#room-accordion").accordion( { collapsible: false, fillSpace: true, autoHeight: true } );

    $('.button').button();


});


