
	jQuery.noConflict();

jQuery(document).ready(function() {

  jQuery('li.external a').click(function() {

    var link = jQuery(this).attr('href');


    jQuery('<div><p>You are now leaving our site to go to:</p><p>'+(link)+'</p><p>The Association of Concert Bands does not maintain this site and is not responsible for its content. Proceed?</p></div>').dialog({

      title: "External Link",

      modal : true,
	  
	  width: 400,

      overlay: {

        backgroundColor: '#F8EFE0',

        opacity: 0.5

      },

      buttons: {

        'Okay': function() {

          jQuery(this).dialog('close').remove();

          window.open(link);

        },

        'Cancel': function() {

          jQuery(this).dialog('close').remove();

          return false;

        }

      }

    });


    return false;

  });

});


