  jQuery.noConflict();

jQuery(document).ready(function() {
	
	jQuery("ul#top-nav li:first").addClass('first-li');
	jQuery(".left-sidebar:first").addClass('first-left-sidebar');
	jQuery(".right-sidebar:first").addClass('first-right-sidebar');
	jQuery("ul.post-meta li:last-child").addClass('last-post-meta-li');
	jQuery("blockquote p:last-child").addClass('last-blockquote-p');
	jQuery("div.entry-content ul.post-meta").find("li:last").remove();
	jQuery("img#buzz").hover(
  function () {
    jQuery(this).attr("src", "http://southseaward.com/wp-content/plugins/buzz-this/img/buzz-button-en-over.png");
  }, 
  function () {
   jQuery(this).attr("src", "http://southseaward.com/wp-content/plugins/buzz-this/img/buzz-button-en.png");
  }
);

	
});

