/** * Functions file for loading custom JS for Canyon drop downs. * * @package Cayon * @subpackage Functions */ (function($){ /** Canyon Dorp Downs */ function canyonMenu() { $( '.menu1 ul' ).supersubs({ minWidth: 16, maxWidth: 27, extraWidth: 1 }).superfish({ delay: 100, speed: 'fast', animation: { opacity:'show', height:'show' }, //autoArrows: false, dropShadows: false }); } /** jQuery Document Ready */ $(document).ready(function(){ canyonMenu(); }); })(jQuery);