function showVideo(id) {
	document.write("<object width=\"269\" height=\"225\"><param name=\"movie\" value=\"http://www.youtube.com/v/"+id+">&amp;hl=en&amp;fs=1\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\"http://www.youtube.com/v/"+id+"&amp;hl=en&amp;fs=1\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"269\" height=\"225\"></embed></object>");
}

$(document).ready(function(){
	
	$('#sidebar h2:first').hide();
	$('#header ol li, #header ol li *').bind('mouseover', function(){
		$(this).find('ul:first').css('display','inline');
		$(this).find('a:first').addClass('hover');
	});
	$('#header ol li').bind('mouseout', function(){
		$(this).find('ul:first').css('display','none');
		$(this).find('a:first').removeClass('hover');
	});
	
});
