// Here I am!
//

var djcp = jQuery.noConflict();

djcp(document).ready(function(){
  djcp("#menu1").find('li a').each(function(){
    var linkText = djcp(this).text();
    if(linkText.match(/^calendar/i)){
      this.href='http://www.melkinginstitute.org/category/upcoming-events/';
    } else if(linkText.match(/^past events/i)){
      this.href='http://www.melkinginstitute.org/category/past-events/';
    } else if(linkText.match(/^clearinghouse/i)){
      this.href='http://www.melkinginstitute.org/category/clearinghouse/';
    } else if(linkText.match(/^home/i)){
      this.href='http://www.melkinginstitute.org/';
    } else if(linkText.match(/^past-events/i)){
      this.href='http://www.melkinginstitute.org/category/past-events/';
    }
  });	
});

