$(document).ready(function() {
// Set navbar image on
	var thePage = $('body').attr('class');
	$('img').each(function() {
		if ($(this).attr('id') == thePage) {
			$(this).attr('src', $(this).attr('hover'));
			$(this).parent().removeAttr('href');
		}
	});	

// Rollover script
	$('.rollover').hover(function() {
			var currentImg = $(this).attr('src');
			$(this).attr('src', $(this).attr('hover'));
			$(this).attr('hover', currentImg);
		}, function() {
			var currentImg = $(this).attr('src');
			$(this).attr('src', $(this).attr('hover'));
			$(this).attr('hover', currentImg);
		});

// end common functions
	});