/**
 * @author jc
 */

 jQuery(function($){
 	$('#hojre_menu a').click(function(){
		if($(this).hasClass('active')) {
			return false;
		}
		
		$('#oversigt li').hide();
		$('#oversigt .'+$(this).attr('class')).show();
		
		$('a#tilbage_link').css('display','block');
		$('a#laes_mere').hide();
		$(this).parent().find('a').removeClass('active');
		$(this).addClass('active');
		
		
		return false;
	});
	
		
	$('a#tilbage_link').click(function(){
		
		$('#oversigt li').hide();
		$('#oversigt .'+$(this).attr('class')).show();
		$(this).hide();
		$('#hojre_menu a').removeClass('active');
		$('a#laes_mere').css('display','block');
		
		return false;
	});
	
	
	$('a#laes_mere').click(function(){
		$('#oversigt li').hide();
		$('#oversigt .'+$(this).attr('class')).show();
		$(this).hide();
		$('#hojre_menu a.fakta').addClass('active');
		$(this).hide();
		$('a#tilbage_link').css('display','block');
								   
	});							   
	
 });

