/* Javascript to change this site into multi column. 
 *
 * Author: Lukas Pitschl <lukas@leftandleaving.com>
 * Copyright (c) Left And Leaving 2009
 */


jQuery(function() {(function($) {
	// Move the img-container to the body as a main div.
	$('#content').parent().append($('#img-container'));
	
	// All main divs should float to left.
	$('body > div').css('float', 'left')
	
	// Add the br to clear the floating
	$('body').append($('<br>').css('clear', 'both'))
	
	// Change the width of the content container
	$('#content p').css('width', '300px')
	
	// Change the left margin of the img-container
	$('#img-container').css('marginLeft', '45px').css('marginTop', '20px')
	
	// Change the menu width.
	$('#menu').css('width', '180px')
	
	// Reduce the padding between the menu and the content
	$('#content').css('marginLeft', '180px')
	
	// The menu should scroll with.
	$('#menu').css('position', 'fixed')
})(jQuery)})
