// JavaScript Document

window.addEvent('domready', function() {
	
	
 
	 
	var list = $$('a');
	list.each(function(element) {
	 
		var fx = new Fx.Tween(element, {duration:200, wait:false});
	 
		element.addEvent('mouseover', function(){
		fx.start('color', '#C66E3E');
		
	});
 
	element.addEvent('mouseout', function(){
			fx.start('color', '#333333');
			
	});
	 
	
	});
	
	
	var list = $$('a.there');
	list.each(function(element) {
	 
		var fx = new Fx.Tween(element, {duration:200, wait:false});
	 
		element.addEvent('mouseover', function(){
		fx.start('color', '#C66E3E');
		
	});
 
	element.addEvent('mouseout', function(){
			fx.start('color', '#C66E3E');
			
	});
	 
	
	}); 
	
	
	var list = $$('#artwork img');
	list.each(function(element) {
	 
		var fx = new Fx.Tween(element, {duration:400, wait:false});
	 
		element.addEvent('mouseover', function(){
		fx.start('border-color', '#333333');
		
	});
 
	element.addEvent('mouseout', function(){
			fx.start('border-color', '#ffffff');
			
	});
	 
	
	}); 
	 
	 
	 
//end of dom events
});