/* real estate list */
window.addEvent('domready', function(el) {
	if ($('realestates')) {
		$('realestates').getElements('.details').setStyle('cursor', 'pointer').addEvent('mouseover', function(e) {
			this.addClass('hover');
		}).addEvent('mouseout', function(e) {
			this.removeClass('hover');
		}).addEvent('click', function(e) {
			window.location.href = this.getElement('a').href;
		});
	}
	if ($('hoverable')) {
		$('hoverable').getElements('.text').setStyle('cursor', 'pointer').addEvent('mouseover', function(e) {
			this.addClass('hover');
		}).addEvent('mouseout', function(e) {
			this.removeClass('hover');
		}).addEvent('click', function(e) {
			window.location.href = this.getElement('a').href;
		});
	}
});