$(document).ready(function(){
	// --------------------------------------
		$('.textbox').focus(function(){
			$(this).addClass('active');
		});
		$('.textbox').blur(function(){
			$(this).removeClass('active');
		});
	// --------------------------------------
	
	// Highlight the event table rows
		$('table tr:odd').addClass('odd');
	// ------------------------------

	// VIDEO
	$("#video").click(function() {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'		: 680,
			'height'		: 495,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			   	 'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});

		return false;
	});
});
