
$j = jQuery.noConflict();

$j(document).ready(function() {

/* Select correct menu item style for current page*/
    $j('#navigation a').each(function () {
    if (window.location.href.toLowerCase().indexOf($j(this).attr('href').toLowerCase()) >= 0 &&
             $j(this).attr('href').length > 1) {
        $j(this).addClass('current');
    }

});


if (window.location.href.toLowerCase() == 'http://www.thetruth.org.uk/') {
    $j('.home').addClass('current');

}
 
});



