$(document).ready(function() {
	stretchcontent();
	$(window).resize( stretchcontent );
	function stretchcontent() {
		if( $('#wrapper').height() < ( $(window).height() )  ) {
			$('#left-col').height($(window).height() - 310 ) ;
		}else{
	}
	}
	$.fn.copyCSS = function( style, toNode ){
		var self = $(this);
		if( !$.isArray( style ) ) style=style.split(' ');
		$.each( style, function( i, name ){
			toNode.css( name, self.css(name) )
		} );
		return self;
	}
	$('#menu ul.navigation > li').each(function(i){
		if(i == 0){
			$(this).addClass('home');
			return;
		}
		if(i == 1){
			$(this).addClass('school');
			return;
		}
		if(i == 2){
			$(this).addClass('mensen');
			return;
		}
		if(i == 3){
			$(this).addClass('fotos');
			return;
		}
	});
	Cufon.replace('h1', {
		color:'#222222',
		textTransform :'uppercase',
		fontWeight:'900'
	});
	$('a.nourl-top').attr('href','#nogo');

});

