/*********************************************
   Copyright 2009 Solid Cactus/Web.com inc.
		   Last Updated: 8/7/2009
Customized: N
packer: http://dean.edwards.name/packer/
*********************************************/
// Start Features List JS/Plugins


//TESTIMONIALS
(function($) {
	$.fn.testis   = function(vars) {
		var defaults = {
			timeOut: 1000,
			element: this
		};
		
		var settings = $.extend({},defaults,vars);

		var fxDuration = settings.timeOut/6;
		var items = $("#" + settings.element[0].id + " li");

		items.css('display','none');
		
		var fadeIn = function(no) {
			$(items[no]).fadeIn(fxDuration, function() {
				setTimeout(function() {fadeOut(no);}, settings.timeOut);
			});
		}
		var fadeOut = function(no) {
			$(items[no]).fadeOut(fxDuration, function() {
				var lirand = Math.floor(Math.random()*items.length+1);
				fadeIn(lirand - 1);
			});
		}
		fadeIn(0);
	}
})(jQuery);	

/**********************************************************************************************************/
/****************************** Place all add on JS above here, please minify *****************************/
/**********************************************************************************************************/

/************************************* Document on Load jQuery Functions **********************************/

jQuery(document).ready(function() {
		
               // activate testimonials
               $("#testimonials").testis({
                    timeOut: 4000
               });
               
});
