function swap_misc(image)
{
	var orig_image = eval('window.document.'+image);
	var img_string = eval('window.document.'+image+'.src');
	img_base = img_string.substr(0,img_string.length-4);
	img_type = img_string.substr(img_string.length-4,4);
	orig_image.src = img_base+'_OVER'+img_type;
}

function reset_misc(image)
{
	var orig_image = eval('window.document.'+image);
	var img_string = eval('window.document.'+image+'.src');
	img_base = img_string.substr(0,img_string.length-9);
	img_type = img_string.substr(img_string.length-4,4);
	orig_image.src = img_base+img_type;
}

function change_title(image)
{
	window.document.title_image.src = 'includes/images/titles/'+image+'.gif';
}

function reset_title()
{
	window.document.title_image.src = inital_image;
}