
	var Hpc =  {

		init : function() {

			Hpc.tweaks();

		},	//	init : function()


		prep_cycle : function(quotes) {

			$(quotes).appendTo('.welcome_banner');

			$('.welcome_banner').cycle({
				easing     : 'easeInOutQuad',
				height     : 200,
				timeout    : 12000,
				fx         : 'scrollLeft',
				pagerEvent : 'click',
				speed      : 750,
//				sync       : 0,
				width      : 880
			});

		},	//	prep_cycle : function()


		tweaks : function () {

			$('body').addClass('js');

			if ($('.welcome_banner').get(0)) {
				$.ajax({
					dataType : 'html',
					success : function(response) { Hpc.prep_cycle(response); },
					url : '/incs/actions/home_quotes.php'
				});
			}

			//	FireBug, yeah? - Load it up, load it up real good!
			if ($.isFunction(window.loadFirebugConsole)) window.loadFirebugConsole();

		}	//	tweaks : function ()

	}; //	//	var Hpc = Hpc || {}

	//	That's the anthem - get your damn hands up!
	$(function() { Hpc.init(); });

