/*
 * module_simple_accordion.js
 * 
 * T�nd/sl�ck-funktion.
 */

$(document).ready(function(){
	$('a.accs_title').click(function(){
		// Show/hide siblings on click
		$(this).siblings('div').eq(0).toggleClass('accs_show');
		
		// Highlight clicked header
		if($(this).hasClass('accs_tActive')){
			$(this).removeClass('accs_tActive');
			$(this).blur(); /* added 080821 by joolss/LBi */
		} else {
			$(this).addClass('accs_tActive');
		}
		
		// Remove dotted lines on links
		$(this).css('outline', 'none');
		// Don't send the visitor to any page

		if (telenor.ie6) {
			ie6PngImgFix($(this).parent());
		}
		
		return false;
	});
});