// JavaScript Document
//----------------------------------------------
// Displays the image that has been clicked on.
//----------------------------------------------
function show_image(IMAGE){
	$('#page_cover img').attr({SRC: 'images/photos/'+IMAGE+'.jpg'});
	$('#page_cover').show();
}

//
// Hides the page cover image.
//-----------------------------
function hide_image(){
	$('#page_cover img').attr({SRC: 'images/photos/SLGHolder.jpg'});
	$('#page_cover').hide();
}