jQuery(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').live('focus',function() {
			$(this).addClass('selected');
		}).blur(function(){
			$(this).removeClass('selected');
		});
		$('form#contact input:first').focus();
	}
	$('#termsAccept').colorbox({ inline:true, href:"#termsConditions"});
	$('#billPayerIdHelp').colorbox({ inline:true, href:"#billPayerIdContent"});
	$('#checkHelp').colorbox({ inline:true, href:"#checkHelpContent"});
});
