 // hovermove code
 //first instance history
		window.addEvent('domready', function(){
			var list = $$('h4.atStart');
list.each(function(element) {
 
	var fx = new Fx.Styles(element, {duration:400, wait:false});
 
	element.addEvent('mouseenter', function(){
		fx.start({
			'color': '#1F387B'
		});
	});
 
	element.addEvent('mouseleave', function(){
		fx.start({
			'color': '#2161BD'
		});
	});
 });
 
/* var list = $$('#menu li a');
list.each(function(element) {
 
	var fx = new Fx.Styles(element, {duration:300, wait:false});
 
	element.addEvent('mouseenter', function(){
		fx.start({
			'background-color': '#511a42',
			'color': '#fff'
		});
	});
 
	element.addEvent('mouseleave', function(){
		fx.start({
			'background-color': '#fff',
			'color': '#511a42'
		});
	});
 });    */
 
 
 
 });

