(function($) {
	$('a.rollover').hover(
		function() {
			var id = this.href.substr(this.href.lastIndexOf('#'));
			$('#noHover').hide();
			$(id).show();
		},
		function() {
			var id = this.href.substr(this.href.lastIndexOf('#'));
			$(id).hide();
			$('#noHover').show();
		}
	);
})(jQuery);