function showarea()   
{   
	$.ajax({   
	type: "GET",  
	url: "getregion.php",  
	cache: false,   
    success: function(html){   
    $("#fullArea").html(html);   
    }   
});   
} 
function show(q)   
        {
	$.ajax({   
    type: "GET",  
    url: "getfullhotel.php",  
	data: "q=" + q, 
    cache: false,   
    success: function(html){   
    $("#fullHotel").html(html);   
    } 
    });
}

function showcomment(q)
{
	$.ajax({   
    type: "GET",  
    url: "getcomments.php",  
	data: "q=" + q, 
    cache: false,   
    success: function(html){   
    $("#fullComments"+q).html(html);   
    } 
    });

}


//вывод слоя по районам       
$(document).ready(function(){
    $('.spoiler').hide()
    $('.pressit').click(function(){
        $('.spoiler').slideToggle("slow");
    })
})


