$(document).ready(function(){
	
	if (ie && !ie6plus) return;
	
	// - - - - - - - - - - - - - - - - - - - - - - -
	
	content_scroll();
	video_marquee();
	
	// - - - - - - - - - - - - - - - - - - - - - - -
	
	if (marquee) {
		
		marquee.trigger('stop'); 
		
		marquee.mouseover(function () {
			$(this).trigger('start');
		});
	
		marquee.mouseout(function () {
			$(this).trigger('stop');
		});
		
		$('.start').mouseout( function () {
			marquee.trigger('stop'); 
		});
		
		$('#marquee .cover').show();
		
		$('#marquee').mouseenter( function () {
			$('#marquee .cover').fadeOut("fast");
		});
		
		$('#marquee').mouseleave( function () {
			$('#marquee .cover').fadeIn("fast");
		});

	}
	
	// - - - - - - - - - - - - - - - - - - - - - - -
	
});
