// Ragan Sliders FTW

jQuery.noConflict();
    jQuery(function() {
      jQuery('.expandmenu0:has(ul)').each(function () {
        var anchor = jQuery(this).children('a').children('span');
        var anchor_html = jQuery(anchor).html();
        jQuery(anchor).html('<tt></tt>' + anchor_html);
        var ul = jQuery(this).children('ul').show();
        jQuery(anchor).click(function (event) {
          event.preventDefault();
          if (jQuery(ul).css('display') === 'block') {
			jQuery(ul).slideUp('fast');
            jQuery(anchor).html('<tt></tt>' + anchor_html);
          } else {
            jQuery(ul).slideDown('fast');
            jQuery(anchor).html('<tt></tt>' + anchor_html);
          }
        });
      });
    });
	

    jQuery(function() {
      jQuery('.expandmenu:has(ul)').each(function () {
        var anchor = jQuery(this).children('a').children('span');
        var anchor_html = jQuery(anchor).html();
        jQuery(anchor).html('<tt></tt>' + anchor_html);
        var ul = jQuery(this).children('ul').hide();
        jQuery(anchor).click(function (event) {
          event.preventDefault();
          if (jQuery(ul).css('display') === 'block') {
			jQuery(ul).slideUp('fast');
            jQuery(anchor).html('<tt></tt>' + anchor_html);
          } else {
            jQuery(ul).slideDown('fast');
            jQuery(anchor).html('<tt></tt>' + anchor_html);
          }
        });
      });
    });