/*
CLCP v2.1 Clear Links to Current Page
Jonathan Snook
This code is offered unto the public domain
http://www.snook.ca/jonathan/
*/

window.onload = clearCurrentLink;

function clearCurrentLink(){

    var nav = document.getElementById("dnn_TopLeftPane");
    var a = nav.getElementsByTagName("A");
    for(var i=0;i<a.length;i++)
        if(a[i].href == window.location.href.split("#")[0])
    		a[i].style.fontWeight = 'bold';
}

$(document).ready(function() {
$('.faq dt').each(function() {
var tis = $(this), state = false, answer = tis.next('.faq dd').slideUp();
tis.click(function() {
state = !state;
answer.slideToggle(state);
tis.toggleClass('active',state);
});
});
});

