jQuery(document).ready(function() {
	
	jQuery('p.linklove').remove();
	
	if(jQuery('div.success').is(':visible')) {
		jQuery('form.cform').fadeOut('slow');
	}
	
	if(jQuery('ol.commentlist').is(':visible')) {
		
		jQuery('ol.commentlist ').hide();
		
		jQuery('<h4 id="show">Show all comments</h4>').insertBefore('ol.commentlist').css({
			'cursor' : 'pointer',
			'color' : '#5E9FE1'
		});
		
		jQuery('#show').click(function(){
			
			if (jQuery('ol.commentlist').is(':visible')) {
				jQuery(this).text('Show all comments');
			} else {
				jQuery(this).text('Close comments');
			}
			
			jQuery('ol.commentlist').slideToggle('slow');
		});
	}
	
	
	
	function externalLinks() {
	  return jQuery('a[href^=http]:not("[href^=http://' + document.domain + ']"):not(":has(\'img\')")');
	}
	externalLinks().addClass("external");
	
});
