function blurbOver()
{
	document.getElementById("blurbIcon").src = 'images/blurb-over.gif';
}

function blurbOut()
{
	document.getElementById("blurbIcon").src = 'images/blurb-icon.gif';
}

function toggleBlurbVideo(videoid)
{
	var videoDIV = document.getElementById(videoid);

	if(document.getElementById(videoid).style.display == 'none')
	{	
		document.getElementById(videoid).style.display = 'inline';
	}
	else
	{
		document.getElementById(videoid).style.display = 'none';
		
		// Only way to make the video stop playing when it's hidden in IE, but this kills the player so it won't come back...
		//videoDIV.innerHTML = '&nbsp;';
	}
}
