function greenRows()// JavaScript Document$('#rooms tbody tr').mouseover(function()
{
	var rows = $('#rooms tbody tr');
	rows.mouseover(function()
	{
		$(this).addClass('highlight');
	});
	
	rows.mouseout(function()
	{
		$(this).removeClass('highlight');
	});
};