/**
 * @link http://www.openhousegalway.ie/scripts/openhouse.js
 * @copyright Ambient Age (http://www.ambientage.com), 2009
 * @version 1.0
 */

$(document).ready(function(){
	
	$('div.tour-snippet').mouseover(function(){
		$(this).css({backgroundColor: '#efefef', cursor: 'pointer'});
		$(this).attr('title', 'See more about ' + $(this).find('.building-snippet h3').text());
	}).mouseout(function(){
		$(this).css({backgroundColor: '#fff', cursor: 'normal'});
		$(this).remove('title');
	}).click(function(){
		window.location = $(this).find('.building-snippet h3 a').attr('href');
	});
	
});