jQuery(document).ready(function(){
	jQuery('ul li:first-child').addClass("first");
	jQuery('ul li:last-child').addClass("last");
	jQuery('body.blog hr:last').hide();
	jQuery("a[href='#top']").click(function() {
	  $("html, body").animate({ scrollTop: 0 }, "slow");
	  return false;
	});
	jQuery('.entry-content ul li, .entry-content ol li').wrapInner('<span class="li"></span>');

	jQuery('a[rel="external"]').click(function(){
	    this.target = "_blank";
	});
	
	
	jQuery('input[type="text"], textarea').each(function() {
			var default_value = this.value;	
			jQuery(this).focus(function() {
			if(this.value == default_value) {
			this.value = '';
			}
			});
			jQuery(this).blur(function() {
			if(this.value == '') {
			this.value = default_value;
			}
			});
	});
	
	
});
