var loop_time = 5000;
$(document).ready(function(){		
	$('#quick-search input[type="submit"]').click(function() {
		
	});
	
	
	
	function autoSlide() {
		nextSel = currentSel + 1;
		if(nextSel > selectMax) {nextSel = 1;}
		$('#slide_'+currentSel).removeClass('active');
		$('#slide_'+nextSel).addClass('active').trigger('ON', [currentSel, nextSel]);	
		nextSel++;		
	}
	
	$('.video_1 a').fancybox({
		'type':'iframe',
		'width':1000,
		'height':580,
		'scrolling':'no',
		'autoScale': false,
		'titleShow':false
	});
	$('.video_2 a').fancybox({
		'type':'iframe',
		'width':480,
		'height':290,
		'scrolling':'no',
		'autoScale': false,
		'titleShow':false
	});
	
	if($('.video div').length>1) {
		var vid_max = $('.video div').length-1;
		var vid_int = setInterval(autoFade, loop_time);
		var offset = $('.video div').width();
		var cur_vid = 0;
		$('.video div:eq(0)').css('z-index', 6);
	}
	
	function autoFade() {
		next_vid = cur_vid + 1;
		if(next_vid > vid_max) {next_vid = 0;}
		$('.video div:eq('+cur_vid+')').css('z-index', 7).animate({left: offset}, 'swing', function() {$(this).css('z-index', 5).css('left',0)});
		$('.video div:eq('+next_vid+')').css('z-index', 6);
		//$('#fsearch').val('show: '+$('.video div:eq('+next_vid+')').attr('class')+' hide: '+$('.video div:eq('+cur_vid+')').attr('class'));
		cur_vid = next_vid;
	}
	
});

