jQuery(function(){
	jQuery('.autohint').focus(function(){
		if (jQuery(this).val() == jQuery(this).attr('title')) jQuery(this).val('');
	});
	jQuery('.autohint').blur(function(){
		if (jQuery(this).val() == '') jQuery(this).val(jQuery(this).attr('title'));
	});
	jQuery('.slideholder UL').cycle({ 
		fx:     'fade', 
		speed:  2000, 
		timeout: 4000, 
		pager:  '#nav' 
	});
	jQuery('#content P.testimonial').html(jQuery('#content P.testimonial').html()+'<span>&nbsp;</span>');
	jQuery('#content blockquote P').html(jQuery('#content blockquote P').html()+'<span>&nbsp;</span>');
	jQuery('.subscribe').submit(function(){
		jQuery('.invisible INPUT#webername').val(jQuery(this).find('INPUT.name').val());
		jQuery('.invisible INPUT#weberemail').val(jQuery(this).find('INPUT.email').val());
		jQuery('.invisible FORM input[name="submit"]').trigger('click');
		return false;
	})
	jQuery('.single #content .maincontent .addcomment BUTTON').click(function(){
		jQuery(this).parents('FORM').find('INPUT#submit').trigger('click');
		return false;
	})
	if (jQuery('.wpcf7-form').length > 0) {
		jQuery('div.wpcf7-response-output').replaceWith('');
		jQuery('.wpcf7').prepend('<div class="wpcf7-response-output wpcf7-display-none"></div><div class="relax"></div>');
	};
});
