var tipsState = 0;

function toggleTipsEnVenn() {

	if(tipsState == 0) {
	
		new Effect.SlideDown(document.getElementById("tipsEnVennContainer"));
		tipsState=1;
	
	} else {
	
		new Effect.SlideUp(document.getElementById("tipsEnVennContainer"));
		tipsState=0;
	}

}

jQuery(document).ready(function() {
	Element.hide("tipsEnVennContainer");
});


function grByttBilde(img) {
	jQuery("#articleImageContainer").css("background-image","url(" + img + ")");
}