$(document).ready(function() {
	$('.video-previews .preview').click(function(){
		$('.video-container').hide();
		$('#'+$(this).attr('rel')).show();
		return false;
	});
});

