
$j = jQuery.noConflict();  
    

$j(document).ready(function() {





    $j('#nav 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.onfire-creative.co.uk/') {
        $j('#home a').addClass('current');
    }


    $j('#footer-content 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');
        }
    });




});

