﻿YUI().use('node', 'event', function (Y) {
	Y.on('domready', function () {
		var n = Y.one('#free-site-footer-bar');
		n.set('id', '');
		n.setStyles({ padding: '1px 0 5px 0', borderTop: '1px solid #222', background: '#000', color: '#aaa', position: 'fixed', bottom: '0', left: '0', width: '100%', zIndex: '10', marginTop: '10px' });
		n.all('a').setStyles({ color: '#5e9dfc',textDecoration: 'none' }).each(function (nn) {
			nn.on('hover', function () { nn.setStyle('textDecoration', 'underline'); }, function () { nn.setStyle('textDecoration', 'none'); });
		});
		//Y.one('#page-bottom').insert(n, 'after');
		Y.one('body').append(n);
		//Y.one('body').setStyle('paddingBottom', 0);
	});
});
