jQuery.fn.fadeToggle = function(speed, easing, callback) {
   return this.animate({opacity: 'toggle'}, speed, easing, callback);

};
$(document).ready(function(){
	$('#cf_field_9').val($('#post_title').text() + $('.location').text())
	$('.respond').click(function(){
		$(this).nextAll(".cform").slideToggle();
	})
	$('#menu ul li:last').addClass('last');
	$('input.upload').attr('size', '28');
	$('#post-14 h2:first').hide();
	$('#post-53 .entry img').parent().before('<div class="clear"></div>');
});


