// JavaScript Document
function newStory() {
	$('story').innerHTML = "";
	new Effect.Appear('storyLoader', {duration: 0.3} );
	$('story').style.display = "none";
  	new Ajax.Updater('story', '/scripts/get_story.php', { onComplete: function() { $('storyLoader').style.display = 'none'; new Effect.Appear('story', {duration: 0.2} ); } } );
}

function changeCCLink(id, cimg) {
  $(id).src = "/images/" + cimg + ".jpg";
}
function changeCCLinkBack(id, cimg) {
  $(id).src = "/images/" + cimg + "-over.jpg"; 
}


function showFlash() {
 new Effect.Appear('flashbox', {duration:0.3} );	
}
