/*************************************************
*	GMTR Front Page  Javascript Functions        *
*	By Steven Wathen			 				 *
*	01/06/2009				 					 *
**************************************************/

$(document).ready(function() {
	$('img.frontpageimagelink').mouseover(function(){
		$(this).fadeTo("fast", 0.65);
	}).mouseout(function(){
		$(this).fadeTo("fast", 1);
	});
});