/* ########################### home bigbuttons ########################### */
function darker(e){
//e.style.backgroundColor="#"+color;
e.style.height="40px";
}
function lighter(e){
//e.style.backgroundColor="#6ba5c2";
//e.style.backgroundColor="#002761";
//e.style.backgroundColor="#ff0000";
e.style.height="50px";
}
/* ########################### menu ########################### */
function darker2(e){
e.style.backgroundColor="#002761";
e.style.height="24px";
e.style.lineHeight=e.style.height;
}
function lighter2(e){
e.style.backgroundColor="#666669";
e.style.height="34px";
e.style.lineHeight=e.style.height;
}
/* ########################### events ########################### */
function addEvent( obj, type, fn ) {
	if ( obj.attachEvent ) {
		obj['e'+type+fn] = fn;
		obj[type+fn] = function(){obj['e'+type+fn]( window.event );}
		obj.attachEvent( 'on'+type, obj[type+fn] );
	} else
		obj.addEventListener( type, fn, false );
}
var maxLen
function accorcia(e){
	var le = parseInt(e.style.width);
	console.log("width: "+le );
	e.effects().start({
			'width':[150,le]
			});
}
function allunga(e){
	var le = parseInt(e.style.width);
	console.log("width: "+le );
	e.effects().start({
			'width':[le,600]
			});
			
}

