$(document).ready(function(){
// video carousel	
	$('.article object').parent().parent().hide();
	var html = "<div style='padding:.5em;height:24px;'><a style='margin:1em 0 0 0;float:left;' class='prev' href='#'><img height='12' src='http://www.gnof.org/wp-content/themes/GNOF/images/left.gif'><strong> Previous Video</strong></a><a style='margin:1em 0 0 0;float:right;' class='next' href='#'><strong>Next Video </strong><img height='12' src='http://www.gnof.org/wp-content/themes/GNOF/images/right.gif'></a></div>";
	$('.article object').after(html);
	$('.article object:first').parent().parent().fadeIn();
	
	$('.next').click(
	    function(){$('.article object:visible').parent().parent().fadeOut('slow',
			function(){
				var index = $('.article object').parent().parent().index(this);
				index++;
				if (index == $('.article object').parent().parent().size()){
					index = 0;
				}
				$('.article object').parent().parent().eq(index).fadeIn('slow');
		});
	    return false;
	});
	$('.prev').click(
	    function(){$('.article object:visible').parent().parent().fadeOut('slow',
			function(){
				var index = $('.article object').parent().parent().index(this);
				index--;
				$('.article object').parent().parent().eq(index).fadeIn('slow');
		});
	    return false;
	});
});
