$(document).ready(function() {
	var $colorbox = $('.colorbox');
	$colorbox.colorbox({scrolling:false, innerWidth:"700", innerHeight:"394", current:"({current} of {total})", onLoad:function(){
		swfobject.removeSWF("video");
	}});
	$('.videoGrid').each(function (i) {
		var count = $('.colorbox', this).length;
		var original = count;
		$('.colorbox', this).each(function (i) {
			count = count + 1;
			var number = count - original;
			$(this).append('<span class="number">' + number + '</span>');
		});
	});
});
