// 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(/^academic roundtable/i)){
      this.href='http://www.melkinginstitute.org/category/academic-roundtable/';
    } else if(linkText.match(/^past-events/i)){
      this.href='http://www.melkinginstitute.org/category/past-events/';
    }
  });	
  djcp('.rss-box .posts-icon').replaceWith('<a target="_blank" href="https://twitter.com/#!/MKInstitute"><img src="http://www.melkinginstitute.org/blogs/wp-content/www.melkinginstitute.org/uploads/2012/02/twitter-16x16.png" alt="Twitter" /> @MKInstitute</a>&nbsp;&nbsp;<a target="_blank" href="https://www.facebook.com/pages/The-Mel-King-Institute-for-Community-Building/290972377582227"><img src="http://www.melkinginstitute.org/blogs/wp-content/www.melkinginstitute.org/uploads/2012/02/facebook-16x16.png" alt="Our facebook page" /> Facebook</a>&nbsp;&nbsp;<a target="_blank" href="http://www.linkedin.com/groups?gid=2130714&trk=myg_ugrp_ovr"><img src="http://www.melkinginstitute.org/blogs/wp-content/www.melkinginstitute.org/uploads/2012/02/linkedin-16x16.png" alt="LinkedIn" /> LinkedIn</a>&nbsp;&nbsp;<a target="_blank" href="/feed/"><img src="http://www.melkinginstitute.org/blogs/wp-content/www.melkinginstitute.org/uploads/2012/02/rss-16x16.png" alt="RSS Feed" /> RSS</a>');
});


