(function($){
	var initLayout = function() {

		$('#featuredVideos').spacegallery({loadingClass: 'loading'});
		startAnimation();
		bindEvents();

		$('#featuredVideos').find('img:last').each(function() {
			$('#featured_video_title').html($(this).attr('alt'));
			$('#featuredVideos').find('a').attr('href', $(this).attr('rel'));
		});
	};
	
	var bindEvents = function() {
		$('#featuredVideos').find('a').each(function () {
			$(this).bind('mouseover', function(e) {
				stopAnimation();
			});
			$(this).bind('mouseout', function(e) {
				startAnimation();
			});
		});
	}

	var animTimer = null;

	var startAnimation = function() {
		animTimer = setInterval("$('#featuredVideos .event').trigger('click');", 2500);
	}

	var stopAnimation = function() {
		clearInterval(animTimer);
	}
	
	EYE.register(initLayout, 'init');

})(jQuery)
