//////// cufon font replacement controls
Cufon.replace('li, h3', {
	fontFamily: 'Trade Gothic LT Std',
	hover: true,
	hoverables: { strong: true},
	hover: {
		color: 'red'
	}
	
});



//////// Jquery menu controls

    $(document).ready(function() {
      $('ul.sf-menu').sooperfish({
		dualColumn  : 12, //if a submenu has at least this many items it will be divided in 2 columns
		tripleColumn  : 18, //if a submenu has at least this many items it will be divided in 3 columns
        animationShow:   {'height':'show'},
        speedShow:     400,
        animationHide:  {'height':'hide'},
        speedHide:     200,
		 delay    : 100
		
			});
	 });

