$( document ).ready( function(){		

	$( '.mainmenu a' )
		.hover( function(){		
			var theclass = 'navtitle-'+$(this).attr('class');
			
			$('#navtitle').removeClass();
			if(theclass == 'navtitle-home'){
				theclass = 'navtitle-welcome';	
			}
			$('#navtitle').addClass(theclass);
			$('#navtitle').removeClass('selectedPage');
			
		});



});
