// Delay Plugin for jQuery
// - http://www.evanbot.com
// - © 2008 Evan Byrne
// von klm auf festen Wert von 9 Sekunden eingestellt
jQuery.fn.delay = function(time,func){
	return this.each(function(){
		setTimeout(func,90000);
	});
};