// JavaScript Document
window.addEvent('domready', function(){
ajusteVentana()
});
window.addEvent('resize', function(){
ajusteVentana()
});
function ajusteVentana(){
	var scroll = window.getSize();
			espacioBarra=scroll.x;
			espacioBarraAlto=scroll.y;
	$('scroll').setStyles({
		width: espacioBarra,
		height: espacioBarraAlto
	});
}

function TG(a, changeTo){
	a.style.backgroundColor = changeTo;
}