
$j = jQuery.noConflict();

$j(document).ready(function() {


$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');
    }

});


if (window.location.href.toLowerCase() == 'http://www.nintendodsistock.co.uk/') {
    $j('#home a').addClass('current');

}

if (window.location.href.toLowerCase() == 'http://www.dsilite.co.uk/') {
    $j('#home a').addClass('current');

}



     jQuery('.grid tr').click(function() {
               window.open(jQuery("a", this).attr('href'), 'newwin').focus();
               return false;
           });
           


});


