
 $j = jQuery.noConflict();  
    

 $j(document).ready(function() {

//alert(window.location.href.toLowerCase());

     $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.myfreedvdrental.co.uk/') {
         $j('#home a').addClass('current');

    }



});

