// JavaScript - For ulster pages

// JavaScript for the Rollover button

$(document).ready(function(){
	$('.rollover-block').mouseover(function() {
		$(this).children('.rollover-content').addClass('rollover-selected');
		$(this).find('span').show();
	});
	
	$('.rollover-block').mouseout(function() {
		$(this).children('.rollover-content').removeClass('rollover-selected');
		$(this).find('span').hide();		
	});

});

