window.addEvent('domready', function(){
var examples = $$('.exampleSite');
examples.each(function(element) {
 
	var fx = new Fx.Styles(element, {duration:200, wait:false});
 
	element.addEvent('mouseenter', function(){
		fx.start({
			'background-color': '#f4f4f4',
			'border-top-color': '#cccccc',
			'border-bottom-color': '#cccccc',
			'border-left-color': '#cccccc',
			'border-right-color': '#cccccc',
			'color': '#cc3333',
		});
	});
 
	element.addEvent('mouseleave', function(){
		fx.start({
			'background-color': '#ffffff',
			'border-top-color': '#ffffff',
			'border-left-color': '#ffffff',
			'border-right-color': '#ffffff',
			'border-bottom-color': '#cfcfcf',
			'color':'#666666',
		});
	});
 
});
});
