(function($) {

	$(document).ready(function() {
		var archiveListHeight = $('.archiveList').height();
		$('.archiveList').css("height", "97px");
		
	    $('.leftPageMenu .showMoreAndLess a').click(function() {
	    	$('.archiveList').css("height", function() {
		    	if($('.archiveList').height() <= 97)
		    	{
		    		$('.archiveList').animate({"height": archiveListHeight});
		    		$('.leftPageMenu .showMoreAndLess a').html("Visa färre");
		    	}
		    	else
		    	{
		    		$('.archiveList').animate({"height": "97px"});
		    		$('.leftPageMenu .showMoreAndLess a').html("Visa äldre arkiv");
		    	}
	    	});
	    	return false;
	    });
	    
		$('.leftPageMenu:first > ul > li:last').addClass("last");
		
		$('.leftPageMenu:last > ul > li:last').addClass("last");
		
		$('.leftPageMenu > ul > li > ul > li').bind('click', function() {
			if ($(this).hasClass('showMoreAndLess')) {
				return $(this).find('a').click();
			}
			
			location.href = $(this).find('a').attr('href');
			return false;
		});
		
		$('a.fancy-it').fancybox({
			'titleShow'     : false,
			'type'          : 'swf',
			'swf'           : {'wmode':'transparent','allowfullscreen':'true'}
		});
	});

})(jQuery);
