//replaces makeAccordion and animateRollover from legacy js as was causing a js error accross site.
jQuery(document).ready(function() {

 
jQuery(function(){
        jQuery('div#navigation dl dd ul li a').bind("mouseenter", function () {
            jQuery(this).animate({
                "marginLeft": "10", "opacity": 1, "duration": "slow", "easing": "easein"
                }, 100 )}
            ).bind("mouseleave", function () {  
            jQuery(this).animate({
              "marginLeft": "0", "opacity": 1,"duration": "slow", "easing": "easein"
        }, 100 )
        });
    });

 });
