$(document).ready(function() {
	var wbHeight, temp;



	$('#left h1.entry-title a').hover(function() {
		$(this).append('<img src="http://wesbos.com/wp-content/themes/wb2011/i/yellow_crown.png" alt="">');
	},
		function() {
			$('img', this).remove();
		});


	$('textarea[name="your-message"]').one('focus', function() {
		$(this).val('').css({color: "#000"});
	});
	
		
	wbHeight = $('#left').height();
	wbHeight = wbHeight - 120;
	$('#sidebar').height(wbHeight);    
}); // end doc ready
