$(function() {

	//Move stuff
	if($('#content').hasClass('twoCols')){
		$('#menu ul').prependTo('#container1').wrap('<div class="article"></div>').before('<h2>Les mer</h2>').attr('id', 'submenu');
	}
	if($('#content').hasClass('threeCols')){
		$('#menu ul').prependTo('#container2').wrap('<div class="article"></div>').before('<h2>Les mer</h2>').attr('id', 'submenu');
	}

	//Odd & even classes
	$('ul').find('li:even').addClass('even');
	$('li:first-child').addClass('f');
	$('li:last-child').addClass('l');
	$('tr:odd').addClass('even');

	//Advertising cycle
	$('#sponsorer').cycle({
		fx:     'fade',
		speed:  2000,
		timeout: 5000,
		startingSlide: 0,
		pause: 1,
		cleartype: 1,
		before: function() { 
			//callback
		}
	});

});