$(document).ready(function () {

	//-------------------------------------------------------------------------------
	//	SET THE MOUSE OVER FOR THE THREE LINKS IN THE BLOCKS AT THE TOP AND THE BOTTOM
	//
	$('div#bottomrow a, div#toprow a.toplink').mouseover(function() {
		$(this.parentNode).addClass('mouseover');
	});
	
	$('div#bottomrow a, div#toprow a.toplink').mouseout(function() {
		$(this.parentNode).removeClass('mouseover');
	});

	$('div#maincontent div.buttons a').mouseover(function() {
		$(this.parentNode.parentNode.parentNode.parentNode).addClass('mouseover');
	});

	$('div#maincontent div.buttons a').mouseout(function() {
		$(this.parentNode.parentNode.parentNode.parentNode).removeClass('mouseover');
	});
	
	$('form.feedback button').mouseover(function(){
		$(this).addClass('mouseover');
	});

	$('form.feedback button').mouseout(function(){
		$(this).removeClass('mouseover');
	});
});