function shadowLeft() {
	$('.widget .shadow').each(function() {
		//	var shadowHeight = $('.shadow').parent().height();
		//	$('.widget li span.shadow').each().height(shadowHeight);
		thisHeight = $(this).parent().height() + 20;
		$(this).height(thisHeight);	
	});
}

function slideOut(obj) {
	$(obj).hover(function(){	
	  $(this).animate( { "width":"120"}, 200 )
	});
	$(obj).mouseout(function(){
	  $(this).animate( { "width":"109px"}, 200 )
	});
}
function jumpUp(obj) {
	$(obj).hover(function(){	
	  $(this).animate( { "bottom":"0px", "opacity": "1" }, 200 )
	});
	$(obj).mouseout(function(){
	  $(this).animate( { "bottom":"-10px", "opacity": ".4" }, 200 )
	});
}
	$(document).ready(function() {
		$('.jumpup').css({"opacity": ".4"});
		jumpUp('.jumpup');
		slideOut('.navlink');
		shadowLeft();
		jQuery('input[type=text]').each( function(i) {
			var t = jQuery(this);
			var thisval = t.val();
			t.blur( function() {
				if (t.val() == '') t.val(thisval);
			}); // end blur function
			t.focus( function() {
				if (t.val() == thisval) t.val('');
			});// end focus function
		}); //END each function
	});
	Cufon.replace('h3.widget-title', {textShadow: '1px 1px #fff'});
	Cufon.replace('.entry-box h2, #respond h3, .post-summary h3', {hover: true});
