function videoSelector() {
	$('#videoSelect li a').hover(function() {
		if (!$(this).parent().attr('class').split(' ')[1]) 
			$(this).siblings('div.tooltip').show();
	}, function() {
		if (!$(this).parent().attr('class').split(' ')[1]) 
			$(this).siblings('div.tooltip').hide();
	}).click(function() {
		if (!$(this).parent().attr('class').split(' ')[1]) {
			$('#videoArea').html('<a href="#" title="Click to watch video" class="videoThumb ' + $(this).parent().attr('class') + '"><span>Click to watch video</span></a>');
			$('#videoSelect li').each(function(i) {
				$('#videoSelect li').removeClass('video0' + (i + 1) + '-selected');
			});
			$(this).parent().addClass($(this).parent().attr('class') + '-selected');
			$(this).siblings('div.tooltip').hide();
		}
		return false;
	});
}