// JavaScript Document
window.onload=initAll;
function initAll(){
	document.getElementById("pylon").onmouseover=pylon;
	document.getElementById("pylon").onmouseout=defaulty;
	document.getElementById("flect").onmouseover=flect;
	document.getElementById("flect").onmouseout=defaulty;
	document.getElementById("channel").onmouseover=channel;
	document.getElementById("channel").onmouseout=defaulty;
	document.getElementById("banner").onmouseover=banner;
	document.getElementById("banner").onmouseout=defaulty;
	document.getElementById("wraps").onmouseover=wraps;
	document.getElementById("wraps").onmouseout=defaulty;
	document.getElementById("home").onmouseover=homee;
	document.getElementById("home").onmouseout=defaulty;
	document.getElementById("location").onmouseover=location;
	document.getElementById("location").onmouseout=defaulty;
	document.getElementById("contact").onmouseover=contact;
	document.getElementById("contact").onmouseout=defaulty;
}
function defaulty(){
	document.getElementById("changer").src="images/default.jpg";
}
function channel(){
	document.getElementById("changer").src="images/channels.jpg";
}
function banner(){
	document.getElementById("changer").src="images/banner.jpg";
}
function wraps(){
	document.getElementById("changer").src="images/wrap.jpg";
}
function pylon(){
	document.getElementById("changer").src="images/pylon.jpg";
}
function flect(){
	document.getElementById("changer").src="images/Flect-Graphic.jpg";
}
function homee(){
	document.getElementById("changer").src="images/home.jpg";
}
function location(){
	document.getElementById("changer").src="images/location.jpg";
}
function contact(){
	document.getElementById("changer").src="images/contact.jpg";
}
