jQuery.noConflict();
jQuery(document).ready(function($){
// EVERY PAGE : main menu...
  //centre the main menu horizontally within the page...
/*
  var sf = $('ul.sf-menu'), mn = $('#skin_mainnav'), sfdiff = Math.floor((mn.width() - sf.width())/2);
  mn.css({paddingLeft:sfdiff});
*/
  //apply superfish & sub-menu dropdowns...
  $('ul.sf-menu').supersubs({
            minWidth:    12,   // minimum width of sub-menus in em units
            maxWidth:    27,   // maximum width of sub-menus in em units
            extraWidth:  1     // extra width can ensure lines don't sometimes turn over
                               // due to slight rounding differences and font-family
        }).superfish({dropShadows:false, autoArrows:false, speed:'fast'}).find('ul').bgIframe({opacity:true});
});



