$(document).ready(function() {
	
	$('.listings_item').hover(function() {
		$('.highlight').removeClass('highlight');
		$(this).addClass('highlight');
		$(this).css('cursor', 'pointer');
		$('.listings_item').bind('click', function() {
			if($('.highlight a').attr('href')) {
				top.location=$('.highlight a').attr('href');
			}
		});
	}, function() {
		$(this).css('cursor', 'default');
		$(this).removeClass('highlight');
	});
	
	$('.left').bind('click', function() {
		if ($('.highlight a').attr('href')) {
			top.location=$('.highlight a').attr('href');	
		}	
	});
	
	$('.left').hover(function() {
		$(this).css('cursor', 'pointer');
	}, function() {
		$(this).css('cursor', 'default');
	});
	
	$('.right').bind('click', function() {
		if($('.highlight a').attr('href')) {
			top.location=$('.highlight a').attr('href');
		}	
	});
	
	$('.right').hover(function() {
		$(this).css('cursor', 'pointer');
	}, function() {
		$(this).css('cursor', 'default');
	});
	
});