//<[CDATA[
// Mainmenu mouse-overs
$(document).ready(function(){
$('.hoverimage').hover(
	function(){
		if(this.src.match('_out.')){
			this.src = this.src.replace(/_out./, "_over.");
		}
	},
	function(){
		if(this.src.match('_over.')){
			this.src = this.src.replace(/_over./, "_out.");
		}
	} 
);
});
//]]>
