﻿// News-Item Fade
window.addEvent('domready', function(){
	var list = $$('div.news-latest-item,div.res-tmpl-css,div.infobox,div.tx-kesmallads-pi1-textcontent,div.dmm_detail,div.news-archive-list-item');
	list.each(function(element) {
		
		var fx = new Fx.Styles(element, {duration:200, wait:false});
		
		element.addEvent('mouseenter', function(){
			fx.start({
				'background-color': '#fff',
				'color': '#000'
			});
			//test
			element.addClass('active');
			//test
		});
		
		element.addEvent('mouseleave', function(){
			fx.start({
				'background-color': '#f5f5f5',
				'color': '#333'
			});
			//test
			element.removeClass('active');
			//test
		});
		
	});
}); 





// Form Input Color Fade
window.addEvent('domready', function(){
	var list = $$('input, textarea');
	list.each(function(element) {
		
		var fx = new Fx.Styles(element, {duration:200, wait:false});
		
		element.addEvent('focus', function(){
			fx.start({
				'background-color': '#ffffdc'
			});
		});
		
		element.addEvent('blur', function(){
			fx.start({
				'background-color': '#f5f5f5'
			});
		});
		
	});
}); 