function fixheight() { 
	YUI().use('node', function(Y) {
		docHeight = Number(Y.one('#layout-contents').get('docHeight')) + 20;
		if (Y.UA.ie < 7 )
			docHeight += 350;
		Y.one('#layout-mother').setStyle('height', (docHeight + "px"));
		
		docHeight = docHeight - 163;
		Y.one('#layout-main').setStyle('height', (docHeight + "px"));
	});
};

fixheight();

var layout_header = new supersleight();
layout_header.limitTo('layout-header');
layout_header.init();

var layout_menu = new supersleight();
layout_menu.limitTo('layout-menu');
layout_menu.init();

var layout_tagclouds = new supersleight();
layout_tagclouds.limitTo('layout-tagclouds');
layout_tagclouds.init();

var layout_footer = new supersleight();
layout_footer.limitTo('layout-footer');
layout_footer.init();
