/**
 * View spaces by type
 *
 * Changes the picture as the user hovers
 * over the various spaces.
 * 
 * @package reservations
 */

$(document).ready(function ()
{
	$('ul.previews li a').hover(
		function ()
		{ 
			$('img#preview').attr('src', $(this).attr('rel')); 
			$('div.twoThirds h2').text($(this).text());
			$('img#preview').attr('title', 'View details about ' + $(this).text());
			$('img#preview').parent().attr('href', $(this).attr('href'));
		}
	);
});