jQuery(document).ready(function() {
	
	
	jQuery(".col3_top .rubrikcontainer:last").css({"margin-bottom" : "0", "border-bottom" : "0px none"});
	
	jQuery("table.contenttable tr td:first-child").css({"width" : "250px"});
	
	jQuery(".news-list-container .news-list-item:last-child").addClass("last-news");
	
	//Set default open/close settings
	jQuery('.acc_container').hide(); //Hide/close all containers

	//On Click
	jQuery('.acc_trigger').click(function(){
		jQuery(this).toggleClass("active").next(".acc_container").slideToggle();
		return false; //Prevent the browser jump to the link anchor
	});
	
	jQuery('.contenttable tr:odd').addClass('odd');
	jQuery('.contenttable tr:even').addClass('even');

	
});
