
jq(document).ready(function()
{
	var roompreviewborder;
	
	jq('li.roompreview').bind("mouseover",function()
		{
			roompreviewborder = jq(this).css("border");
			jq(this).css("cursor","pointer").css("border","1px solid #555");
		})
		.bind("mouseout",function() 
		{
			jq(this).css("border",roompreviewborder);
		})
		.bind("click",function()
		{
			location = jq(this).attr("alt");
		});
	
	jq('#categoryNavigation a').click(function() {
		
	});
});