window.addEvent('domready', function() {


	var homeHover = new Fx.Tween('home-link');
	$('home-link').addEvent('mouseover', function(e) {
		e.stop();
		// We change the background-color of the element
		homeHover.start('color', '#FFFFFF');
	});
	$('home-link').addEvent('mouseout', function(e) {
		e.stop();
		// We change the background-color of the element
		homeHover.start('color', '#73a08c');
	});
	
	var archivesHover = new Fx.Tween('archives-link');
	$('archives-link').addEvent('mouseover', function(e) {
		e.stop();
		// We change the background-color of the element
		archivesHover.start('color', '#FFFFFF');
	});
	$('archives-link').addEvent('mouseout', function(e) {
		e.stop();
		// We change the background-color of the element
		archivesHover.start('color', '#73a08c');
	});
	
	var blogHover = new Fx.Tween('blog-link');
	$('blog-link').addEvent('mouseover', function(e) {
		e.stop();
		// We change the background-color of the element
		blogHover.start('color', '#FFFFFF');
	});
	$('blog-link').addEvent('mouseout', function(e) {
		e.stop();
		// We change the background-color of the element
		blogHover.start('color', '#73a08c');
	});

	var storeHover = new Fx.Tween('store-link');
	$('store-link').addEvent('mouseover', function(e) {
		e.stop();
		// We change the background-color of the element
		storeHover.start('color', '#FFFFFF');
	});
	$('store-link').addEvent('mouseout', function(e) {
		e.stop();
		// We change the background-color of the element
		storeHover.start('color', '#73a08c');
	});
	
	var aboutHover = new Fx.Tween('about-link');
	$('about-link').addEvent('mouseover', function(e) {
		e.stop();
		// We change the background-color of the element
		aboutHover.start('color', '#FFFFFF');
	});
	$('about-link').addEvent('mouseout', function(e) {
		e.stop();
		// We change the background-color of the element
		aboutHover.start('color', '#73a08c');
	});
	
	
});
