/**
 * YtTools
 * requires mootools version 1.1
 *
 * @version 1.0.13 (13.08.2007)
 * @author yootheme.com
 * @copyright Copyright (C) 2007 YOOtheme Ltd. & Co. KG. All rights reserved.
 */ 
var YtTools = {
		
	start: function() {

		/* Color settings */
		var currentColor = '#ff4b00'; /* default */	
				
		/* Module Morphing */
		var moduleEnter = currentColor;
		var moduleLeave = '#E6E6E6';
		if (YtSettings.color == 'white') moduleLeave = '#E6E6E6';
		
		var moduleFx = new YtMorph('.fetchcontact, table#policy, table#terms, table.table', 
			{ 'border-top-color': moduleEnter, 'border-right-color': moduleEnter,
			  'border-bottom-color': moduleEnter, 'border-left-color': moduleEnter },
			{ 'border-top-color': moduleLeave, 'border-right-color': moduleLeave,
			  'border-bottom-color': moduleLeave, 'border-left-color': moduleLeave },
			{ transition: Fx.Transitions.expoOut, duration: 400 },
			{ transition: Fx.Transitions.sineIn, duration: 500 }); 	
		
		var listFx = new YtMorph('ul#togglewebmails li', 
			{ 'background-color': moduleEnter, 'color': '#5a5a5a', 'width': 170 },
			{ 'background-color': moduleLeave, 'color': '#5a5a5a', 'width': 150 },
			{ transition: Fx.Transitions.expoOut, duration: 400 },
			{ transition: Fx.Transitions.sineIn, duration: 500 });

	}
};

/* Add functions on window load */
window.addEvent('load', YtTools.start);
