

Shadowbox.init({
    language: 'en',
    modal: 'false',
    players: ['img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv']
});


$j = jQuery.noConflict();

$j(document).ready(function() {

/* Select correct menu item style for current page*/
$j('#menu 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');
    }

});


$j('#categories 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.visualis.co.uk/') {
    $j('#home a').addClass('current');

}

if (window.location.href.toLowerCase() == 'http://visualis.co.uk/') {
    $j('#home a').addClass('current');

}

});




