/*
 * @author Andrius Jukna <endris.j@gmail.com>
 * Created on 2008.11.09
 */

var Common ={
	alignBottom: function(){
		var topHeight = 249
		var middleHeight = topHeight + $('#center').height();
	
		$('#rightbot').height(middleHeight - $('#righttop').height());
		$('#left').height(middleHeight - topHeight);
	},
	
	alignMenu: function() {
		var newLeft = $('#header').position().left;
		$('#menu').css('left', newLeft+'px');
	}
};