// idle function fount on http://stackoverflow.com/questions/316278/timeout-jquery-effects
(function($){ 

	jQuery.fn.idle = function(time){
		var o = $(this);
		o.queue(function(){
			setTimeout(function(){
				o.dequeue();
			 }, time);
		});
 		return this; 
	};
})(jQuery);
