jQuery(document).ready(function() {
		jQuery('.rollover').hover(function() {
			if (jQuery(this).hasClass('active') == false) {
				var currentImg = jQuery(this).attr('src');
				jQuery(this).attr('src', currentImg.replace('_off', '_on'));
				jQuery(this).attr('width', '191');
			}
		}, function() {
			if (jQuery(this).hasClass('active') == false) {
				var currentImg = jQuery(this).attr('src');
				jQuery(this).attr('src', currentImg.replace('_on', '_off'));
				jQuery(this).attr('width', '178');
			}
		});
		
		var theImg = '';
		jQuery('#main-nav li a img').each(function(i, n) {
			if (jQuery(this).attr('alt') == currentPage) {
				theImg = jQuery(this);
			}
		});
		if (theImg) {
			var currentImg = jQuery(theImg).attr('src');
			jQuery(theImg).attr('src', currentImg.replace('_off', '_on'));
			jQuery(theImg).addClass('active');
			jQuery(theImg).attr('width', '191');
		}
});
