//init cufon font replacement
Cufon.replace('h2')('h3')('h4', {hover: true})('h5')('h6')('p.toptext', {hover: true});

$(document).ready(function() {
									
	//add loading div for twitter updates
	$('#latest_tweet').html('<div class="loading">&nbsp;</div>');
	
	// Disable caching of AJAX responses
	$.ajaxSetup ({
		cache: false
	});

	//load quote via ajax
	if ($('#display_quote').length > 0) {
		$('#display_quote').load('/wordpress/wp-content/themes/Sentiment_Theme_v2.1/includes/get_quote.php', function () {
			Cufon.replace('blockquote');
		});
	}
	
	//change form input field style on focus
	$('input[type="text"],textarea').focus(function() {
		$(this).addClass("focusField");
	});
	$('input[type="text"],textarea').blur(function() {
		$(this).removeClass("focusField");
	});

});

