jQuery(document).ready(function() {

  //Round corners
  $(".container, .thread-alt, .thread-even").corner("20px cc:#00306e");
  
  //Add the PSA hand to the top right of all post boxes.
  $(".container").prepend('<img src="/wp-content/themes/default/images/psaHandSmall.gif" style="position: absolute; top:10px; right:10px; z-index: 100;" />');
  
  //Suckerfish navigation
  $("#nav li").hover(
	function () {
		$(this).addClass("sfhover");
	},
	function () {
		$(this).removeClass("sfhover");
	}
  );
  
  $("#nav li.current_page_item a").addClass("active");
  $("#nav li.current_page_parent a").addClass("active");
  
});