$(document).ready(function() {
	if ($('#quotesContainer').length > 0 ){
		$('#quotesContainer').cycle({
			fx: 'scrollRight',
			delay: -1000,
			timeout: 11000,
			cleartypeNoBg: true,
			fit: true,
			height: '174'
		});
	}
	if ($('form#contact').length > 0 ){
		$('form#contact input, form#contact textarea').focus(function() {
			$(this).addClass('selected');
		}).blur(function(){
			$(this).removeClass('selected');
		});
		$('form#contact input:first').focus();
	}
});