/*IE 6 hover plagin*/
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('9 u=k(){9 g=/^([^#.>`]*)(#|\\.|\\>|\\`)(.+)$/;k u(a,b){9 c=a.J(/\\s*\\,\\s*/);9 d=[];n(9 i=0;i<c.l;i++){d=d.v(o(c[i],b))};6 d};k o(a,b,c){a=a.z(" ","`");9 d=a.r(g);9 e,5,m,7,i,h;9 f=[];4(d==8){d=[a,a]};4(d[1]==""){d[1]="*"};4(c==8){c="`"};4(b==8){b=E};K(d[2]){w"#":7=d[3].r(g);4(7==8){7=[8,d[3]]};e=E.L(7[1]);4(e==8||(d[1]!="*"&&!x(e,d[1]))){6 f};4(7.l==2){f.A(e);6 f};6 o(7[3],e,7[2]);w".":4(c!=">"){5=p(b,d[1])}y{5=b.B};n(i=0,h=5.l;i<h;i++){e=5[i];4(e.C!=1){q};7=d[3].r(g);4(7!=8){4(e.j==8||e.j.r("(\\\\s|^)"+7[1]+"(\\\\s|$)")==8){q};m=o(7[3],e,7[2]);f=f.v(m)}y 4(e.j!=8&&e.j.r("(\\\\s|^)"+d[3]+"(\\\\s|$)")!=8){f.A(e)}};6 f;w">":4(c!=">"){5=p(b,d[1])}y{5=b.B};n(i=0,h=5.l;i<h;i++){e=5[i];4(e.C!=1){q};4(!x(e,d[1])){q};m=o(d[3],e,">");f=f.v(m)};6 f;w"`":5=p(b,d[1]);n(i=0,h=5.l;i<h;i++){e=5[i];m=o(d[3],e,"`");f=f.v(m)};6 f;M:4(c!=">"){5=p(b,d[1])}y{5=b.B};n(i=0,h=5.l;i<h;i++){e=5[i];4(e.C!=1){q};4(!x(e,d[1])){q};f.A(e)};6 f}};k p(a,b){4(b=="*"&&a.F!=8){6 a.F};6 a.p(b)};k x(a,b){4(b=="*"){6 N};6 a.O.G().z("P:","")==b.G()};6 u}();k Q(a,b){9 c=u(a);n(9 i=0;i<c.l;i++){c[i].R=k(){4(t.j.H(b)==-1){t.j+=" "+b}};c[i].S=k(){4(t.j.H(b)!=-1){t.j=t.j.z(b,"")}}}}4(D.I&&!D.T){D.I("U",V)}',58,58,'||||if|listNodes|return|subselector|null|var||||||||limit||className|function|length|listSubNodes|for|doParse|getElementsByTagName|continue|match||this|parseSelector|concat|case|matchNodeNames|else|replace|push|childNodes|nodeType|window|document|all|toLowerCase|indexOf|attachEvent|split|switch|getElementById|default|true|nodeName|html|hoverForIE6|onmouseover|onmouseout|opera|onload|ieHover'.split('|'),0,{}))
/*parametrs [selector, hover_class]*/
function ieHover() {
	hoverForIE6(".nav li, .nav-holder li", "hover");
}
jQuery.noConflict();
// image rotation gallery
function initGallery(){
	jQuery('.gallery').each(function(){
		// opts
		var _fadeTime = 8000; // 5sec. autoslide
		var _fadeDur = 1000; // 1sec. fade animation speed
		
		// vars
		var _holder = jQuery(this);
		var _el = _holder.find('li');
		__hovered = false;
		
		// reset
		var _currEl = _el.index(_el.filter('.active').eq(0));
		_el.each(function(){
			jQuery(this).css('z-index',1).removeClass('active');
		});
		_el.eq(_currEl).css('z-index',2);
		var _nextEl = _currEl;
		
		// autoslide function
		function autoSlide(){
			_currEl = _nextEl;
			if(_nextEl<_el.length-1) _nextEl++
			else _nextEl = 0;
			_el.eq(_currEl).css('z-index',3);
			_el.eq(_nextEl).css('z-index',2);
			_el.eq(_currEl).animate({
				opacity:0
			},_fadeDur,function(){
				_el.eq(_currEl).css({
					zIndex:1,
					opacity:1
				});
			});
		}
		
		// autoslide
		setInterval(function(){
			if(!__hovered) autoSlide();
		},_fadeTime);
		
		// pause on hover
		_holder.hover(function(){
			__hovered = true;
		},function(){
			__hovered = false;
		});
	});
}

// popup
function initMainPopup(){
	jQuery('.introduce-btn .open').click(function(){
		jQuery(this).parent().find('.popup').show();
	});
	jQuery('.btn-holder .close').click(function(){
		jQuery(this).parents('.popup').hide();
	});
}

// quotes
function initQuotes(){
	jQuery('.quote-box .white-box ul').each(function(){
		// opts
		var _fadeTime = 5000; // 5sec. autoslide
		var _fadeDur = 1000; // 1sec. fade animation speed
		
		// vars
		var _holder = jQuery(this);
		var _el = _holder.find('li');
		__hovered = false;
		
		// reset
		var _currEl = _el.index(_el.filter('.active').eq(0));
		_el.each(function(){
			jQuery(this).css({
				zIndex:1,
				position:'absolute',
				left:0,
				top:0,
				opacity:0
			}).removeClass('active');
		});
		_el.eq(_currEl).css({
			zIndex:2,
			opacity:1
		});
		_holder.css('height',_el.eq(_currEl).height());
		var _nextEl = _currEl;
		
		// autoslide function
		function autoSlide(){
			_currEl = _nextEl;
			if(_nextEl<_el.length-1) _nextEl++
			else _nextEl = 0;
			_el.eq(_currEl).css('z-index',3);
			_el.eq(_nextEl).css({
				zIndex:2,
				opacity:1
			});
			_holder.animate({
				height:_el.eq(_nextEl).height()
			});
			_el.eq(_currEl).animate({
				opacity:0
			},_fadeDur,function(){
				_el.eq(_currEl).css({
					zIndex:1
				});
			});
		}
		
		// autoslide
		setInterval(function(){
			if(!__hovered) autoSlide();
		},_fadeTime);
		
		// pause on hover
		_holder.hover(function(){
			__hovered = true;
		},function(){
			__hovered = false;
		});
	});
}
jQuery(function(){
	initGallery(); // image rotation gallery
	initMainPopup(); // mainpage popup
	initQuotes(); // quote rotation box
});
