$(document).ready(function() {

	//Removes a IMG Border
	$("a:has(img)").addClass("a-no-border");

	//Removes extra space at bottom of Posts
	$(".entry-content p:last-child").addClass("last-paragraph");
	
	//Removes extra space at bottom of UL
	$("ul.sidebar-links li:last-child").addClass("sidebar-links-last");
	
	//Removes extra space at bottom of Web Bits
	$("#blog-sub p:last-child").addClass("web-bit-last");
	
	//Removes extra space at bottom of Comment
	$(".comment-content p:last-child").addClass("comment-last-paragraph");
	
	//Removes extra space at bottom of Trackback P
	$(".trackbacks-list p:last-child").addClass("trackback-last-paragraph");	
	
	//Removes extra space at bottom of Trackback
	$("ol li div.trackback-content-wrapper:last-child").addClass("trackback-content-wrapper-last");		
	
	//Comments Toggler
    $("#show-comments-link").click(function () {
      $(".comment-list").slideToggle("slow");
    });	
    
	//Hide Trackbacks
	$(".trackbacks-list").slideUp(0);    
	
	//Trackbacks Toggler
    $("#show-trackbacks-link").click(function () {
      $(".trackbacks-list").slideToggle("slow");
    });	
    
});