
$(document).ready(function()
{
	$('li.roompreview').bind("mouseover",function()
		{
			$(this).css("cursor","pointer");
		})
		.bind("mouseout",function() 
		{
		})
		.bind("click",function()
		{
			location = $(this).attr("alt");
		});
	$('div#the_gallery').css('height','270px');
});
