jQuery(document).ready(function($){

	$(window).load(function(){	
		var htmlString = $('#clips .thumbs .video-1 .video').html();
		$('#video-large').html(htmlString);
		$('#clips .thumbs .video-block .thumb').first().addClass('current');
	
	});

	
	$('#clips .video-block .thumb a').click(function() {
		$.each($('#clips .video-block .thumb'), function(){
			$(this).removeClass('current');
		});
	
		var htmlString = $(this).closest('.video-block').children('.video').html();
		$('#video-large').html(htmlString);
		$(this).parent('.thumb').addClass('current');
		return false;
	
	});


});


