// JavaScript Document

function InterfaceDisplay(selection) {
	if (selection == 'reels') {
		document.getElementById('NavIFrame').style.display 	= '';
		document.getElementById('MediaIFrame').style.display 	= '';
		document.getElementById('EasterEggIFrame').style.display	= '';
		document.getElementById('ResumeIFrame').style.display 	= 'none';
		
		window.frames['NavDisplay'].location.href 		= 'portfolio.htm';	
		window.frames['MediaDisplay'].location.href 		= 'nothing.htm';
		window.frames['EasterEggDisplay'].location.href		= 'easteregg.htm';

	} else if (selection == 'links') {
		document.getElementById('NavIFrame').style.display 	= '';
		document.getElementById('MediaIFrame').style.display 	= '';
		document.getElementById('EasterEggIFrame').style.display	= '';
		document.getElementById('ResumeIFrame').style.display 	= 'none';
		
		window.frames['NavDisplay'].location.href 		= 'links.htm';
		window.frames['MediaDisplay'].location.href 		= 'nothing.htm';
		window.frames['EasterEggDisplay'].location.href		= 'easteregg.htm';
	
	} else if (selection == 'resume') {
		document.getElementById('NavIFrame').style.display 	= 'none';
		document.getElementById('MediaIFrame').style.display 	= 'none';
		document.getElementById('EasterEggIFrame').style.display	= 'none';
		document.getElementById('ResumeIFrame').style.display 	= '';
		
		window.frames['ResumeDisplay'].location.href 		= 'contact.htm';
		window.frames['NavDisplay'].location.href 		= 'nothing.htm';
		window.frames['MediaDisplay'].location.href 		= 'nothing.htm';
		window.frames['EasterEggDisplay'].location.href		= 'nothing.htm';
	}
}

function MediaNav(selection) {
	if (selection == 'SpotReel') {
		window.frames['MediaDisplay'].location.href = 'SpotReel.htm';
	} else if (selection == 'SizzleReel') {
		window.frames['MediaDisplay'].location.href = 'SizzleReel.htm';
	} else if (selection == 'ShowReel') {
		window.frames['MediaDisplay'].location.href = 'ShowReel.htm'; 
	} else if (selection == 'CarJunkies') {
		window.frames['MediaDisplay'].location.href = 'CarJunkiesReel.htm';
	} else if (selection == 'UFOhio') {
		window.frames['MediaDisplay'].location.href = 'UFOhioReel.htm';
	} else if (selection == 'WarPrayer') {
		window.frames['MediaDisplay'].location.href = 'WarPrayer.htm';
	} else if (selection == 'MidsummerDream') {
		window.frames['MediaDisplay'].location.href = 'MidsummerDream.htm';
	}

}

