/*window.onscroll = doOnScroll;

function doOnScroll()
{
	document.getElementById('flash_embed').focus();
}*/

$(document).ready(function() {

	$('#program div').hide();
	$('#program div:first-child').show();

	$('.prog_hover').hover(function () 
		{	
			$('#program div').hide();
			var thisTarget = $(this).attr('id');
			thisTarget = '#'+ thisTarget + '_area';
			$(thisTarget).show();
			return false;
		}
	);
});