$(document).ready(function(){
	$("#featured .video span").hide();
	$(window).load(function() {
		$('#featured').orbit({
			"animation" : "horizontal-push",
			advanceSpeed: 6000,
			beforeSlideChange: function() {
				var video = $("#featured .video span");
				if ($(".orbitBullets li:eq(1)").hasClass("active")) {
					video.hide();
				}
			},
			afterSlideChange: function() {
				var video = $("#featured .video span");
				if ($(".orbitBullets li:eq(1)").hasClass("active")) {
					video.show();
				}
			}
		});
	});
	
});
