function Scrollers(children){
	this.children=children;
	this.isDragging=false;
	this.currentScroller=null;

	this.startDrag=ScrollersStartDrag;
	this.stopDrag=ScrollersStopDrag;
	this.move=ScrollersMove;
}

function ScrollersStartDrag(mozillaEVENT){
	if(scrollers.isDragging)
		return false;
	var e=(document.all)?event:mozillaEVENT;
	var target=(document.all)?e.srcElement:e.target; 
	for(var i in scrollers.children){
		if(scrollers.children[i].id==target.id){
			scrollers.isDragging=true;
			scrollers.currentScroller=scrollers.children[i];
			scrollers.currentScroller.setContentHeight();
			break;
		}
	}
}

function ScrollersStopDrag(){
	if(scrollers.isDragging){
		scrollers.isDragging=false;
		scrollers.currentScroller.mouseY=null;
		scrollers.currentScroller.contentHeight=null;
		scrollers.currentScroller=null;
	}
	return false;
}


function ScrollersMove(mozillaEVENT){
	var e=(document.all)?event:mozillaEVENT;
	if(scrollers.isDragging){
		scrollers.currentScroller.move(e);
	}
}


function Scroller(id,height,contentId,IdOrcontentMarginTop,contentBoxHeight){
	/*
		id - id соответствующего скроллера
		height - высота свободного хода скроллера
		contentId - id элемента, содержащего контент
		IdOrcontentMarginTop - либо кол-во пикселей, либо id элемента, до которого нужно прокрутить скроллер
		contentBoxHeight - высота области прокрутки контента
	*/
	this.id=id; // id элемента, выполняющего роль подвижного элемента (скроллера)
	this.height=height; // высота свободного хода скроллера
	this.contentId=contentId; // id элемента, содержащего контент
	this.contentMarginTop=0; // стартовая позиция прокрутки контента (px). ниже мы ее определим по IdOrcontentMarginTop
	if(typeof IdOrcontentMarginTop == 'number'){
		this.contentMarginTop=IdOrcontentMarginTop;
	}else{
		if(typeof IdOrcontentMarginTop == 'string'){
			if(document.getElementById(IdOrcontentMarginTop)){
				this.contentMarginTop=document.getElementById(IdOrcontentMarginTop).offsetTop;
			}
		}
	}
	this.contentHeight=null; // высота слоя, содержащего контента
	this.contentBoxHeight=contentBoxHeight; // высота области прокрутки контента
	this.selfMarginTop=null; // стартовая позиция скроллера
	this.mouseY=null; // координата Y мыши

	this.setScrollerDependOnContent=ScrollerSetScrollerDependOnContent;
	this.setContentDependOnScroller=ScrollerSetContentDependOnScroller;
	this.setContentHeight=ScrollerSetContentHeight;
	this.move=ScrollerMove;
	this.redraw=ScrollerRedraw;

	this.setContentHeight();
	this.setScrollerDependOnContent(); // запускается при инициализации
	this.redraw();
}

function ScrollerSetScrollerDependOnContent(){
	/* проверяем находится ли this.contentMarginTop в заданном интервале */
	var contentScrolledHeight=this.contentHeight-this.contentBoxHeight;
	if(this.contentMarginTop>contentScrolledHeight)
		this.contentMarginTop=contentScrolledHeight;
	if(this.contentMarginTop<0)
		this.contentMarginTop=0;

	/* вычисляем this.selfMarginTop */
	this.selfMarginTop=this.contentMarginTop*this.height/contentScrolledHeight;
	this.selfMarginTop=this.height-this.selfMarginTop;
}

function ScrollerSetContentDependOnScroller(){
	/* проверяем находится ли this.selfMarginTop в заданном интервале */
	if(this.selfMarginTop>this.height)
		this.selfMarginTop=this.height;
	if(this.selfMarginTop<0)
		this.selfMarginTop=0;

	/* вычисляем this.contentMarginTop */
	var contentScrolledHeight=this.contentHeight-this.contentBoxHeight;
	this.contentMarginTop=this.selfMarginTop*contentScrolledHeight/this.height;
	this.contentMarginTop=contentScrolledHeight-this.contentMarginTop;
}

function ScrollerSetContentHeight(proc){
	this.contentHeight=document.getElementById(this.contentId).offsetHeight;
}

function ScrollerMove(mozillaEVENT){
	var e=(document.all)?event:mozillaEVENT;
	if(this.mouseY){
		var dy=e.clientY-this.mouseY;
		this.mouseY=e.clientY;
		this.selfMarginTop=this.selfMarginTop-dy;
		this.setContentDependOnScroller();
		this.redraw();
	}else{
		this.mouseY=e.clientY;
	}
}

function ScrollerRedraw(){
	var contentTop=(this.contentMarginTop>0)?'-'+ parseInt(this.contentMarginTop)+ 'px':0;
	document.getElementById(this.contentId).style.marginTop=contentTop;
	var selfTop=(this.selfMarginTop>0)?'-'+ parseInt(this.selfMarginTop)+ 'px':0;
	document.getElementById(this.id).style.marginTop=selfTop;
}

//создаем класс таймер(является готовым плагином для jQuery)
jQuery.fn.extend({
	everyTime: function(interval, label, fn, times, belay) {
		return this.each(function() {
			jQuery.timer.add(this, interval, label, fn, times, belay);
		});
	},
	oneTime: function(interval, label, fn) {
		return this.each(function() {
			jQuery.timer.add(this, interval, label, fn, 1);
		});
	},
	stopTime: function(label, fn) {
		return this.each(function() {
			jQuery.timer.remove(this, label, fn);
		});
	}
});

jQuery.event.special

jQuery.extend({
	timer: {
		global: [],
		guid: 1,
		dataKey: "jQuery.timer",
		regex: /^([0-9]+(?:\.[0-9]*)?)\s*(.*s)?$/,
		powers: {
			// Yeah this is major overkill...
			'ms': 1,
			'cs': 10,
			'ds': 100,
			's': 1000,
			'das': 10000,
			'hs': 100000,
			'ks': 1000000
		},
		timeParse: function(value) {
			if (value == undefined || value == null)
				return null;
			var result = this.regex.exec(jQuery.trim(value.toString()));
			if (result[2]) {
				var num = parseFloat(result[1]);
				var mult = this.powers[result[2]] || 1;
				return num * mult;
			} else {
				return value;
			}
		},
		add: function(element, interval, label, fn, times, belay) {
			var counter = 0;
			
			if (jQuery.isFunction(label)) {
				if (!times) 
					times = fn;
				fn = label;
				label = interval;
			}
			
			interval = jQuery.timer.timeParse(interval);

			if (typeof interval != 'number' || isNaN(interval) || interval <= 0)
				return;

			if (times && times.constructor != Number) {
				belay = !!times;
				times = 0;
			}
			
			times = times || 0;
			belay = belay || false;
			
			var timers = jQuery.data(element, this.dataKey) || jQuery.data(element, this.dataKey, {});
			
			if (!timers[label])
				timers[label] = {};
			
			fn.timerID = fn.timerID || this.guid++;
			
			var handler = function() {
				if (belay && this.inProgress) 
					return;
				this.inProgress = true;
				if ((++counter > times && times !== 0) || fn.call(element, counter) === false)
					jQuery.timer.remove(element, label, fn);
				this.inProgress = false;
			};
			
			handler.timerID = fn.timerID;
			
			if (!timers[label][fn.timerID])
				timers[label][fn.timerID] = window.setInterval(handler,interval);
			
			this.global.push( element );
			
		},
		remove: function(element, label, fn) {
			var timers = jQuery.data(element, this.dataKey), ret;
			
			if ( timers ) {
				
				if (!label) {
					for ( label in timers )
						this.remove(element, label, fn);
				} else if ( timers[label] ) {
					if ( fn ) {
						if ( fn.timerID ) {
							window.clearInterval(timers[label][fn.timerID]);
							delete timers[label][fn.timerID];
						}
					} else {
						for ( var fn in timers[label] ) {
							window.clearInterval(timers[label][fn]);
							delete timers[label][fn];
						}
					}
					
					for ( ret in timers[label] ) break;
					if ( !ret ) {
						ret = null;
						delete timers[label];
					}
				}
				
				for ( ret in timers ) break;
				if ( !ret ) 
					jQuery.removeData(element, this.dataKey);
			}
		}
	}
});

jQuery(window).bind("unload", function() {
	jQuery.each(jQuery.timer.global, function(index, item) {
		jQuery.timer.remove(item);
	});
});
//заканчивается код класса таймера

//код создающий слайд шоу
$(document).ready(function(){
	var t=this;
	t.now=$("#slide img").last();
	t.now.css("display", "block");
	t.lastInd=$("#slide img").index(t.now);
	t.nowInd=$("#slide img").index(t.now);
	$("#slide img:lt("+t.lastInd+")").css("display", "none");
	$(t).everyTime(7000,"",function(){ 
			if (t.nowInd!=0)
			{
				$("#slide img").eq(t.nowInd).fadeOut(1000);
				t.nowInd--;
				$("#slide img").eq(t.nowInd).fadeIn(1000);
			}
			else
			{
				$("#slide img").eq(t.nowInd).fadeOut(1000);
				t.nowInd=t.lastInd;
				$("#slide img").eq(t.nowInd).fadeIn(1000);
			}
	});
});
