$(document).ready(function() {
		cafepapir.init();
});

cafepapir = function() {
	var
	
	checkCurrent = function() {
		var that = $(this);
		
		that.find("a").each(function() {
			if($(this).attr("href") == window.location.pathname.toString()) {
				$(this).addClass("current");
			}
		});
	},
			
	init = function() {
		$("#meny .boks tr:last").css("height", "30px");
		
		$("#menu li").each(checkCurrent);
		
		$('#slideshow').html($('#slideshow img'));
		
		
		$('#slideshow').cycle({fx: 'fade',speed:  2000, timeout: 5000 });
	}
	;
	
	return {
		init:init
	};
}();

