var frs = 1;
var sat = 2;
var security = 3;
var cell = 4;
var alarms = 5;
var towers = 6;
var phones = 7;

var headings = new Array();
	headings[frs] = 'Family Radio Services';
	headings[sat] = 'Satellite Television';
	headings[security] = 'Security Systems';
	headings[cell] = 'Cell Phones';
	headings[alarms] = 'Alarm Systems';
	headings[towers] = 'Towers';
	headings[phones] = 'Phones';

var messages = new Array();
	messages[frs] = "From handheld walkie-talkies to advanced FRS Radios, we can provide whatever hardware you require. Either online or by visiting our store, our catalogue is extensive and we custom order devices as desired.";
	messages[sat] = "Satellite is still the way of the future. From HDTV comptabile boxes to dishes, cable and everything you need to get your satellite up and running, we can install, test and bring your home into the 21st century.";
	messages[security] = "Protect your home with a new, state-of-the-art security system. Wireless, wired - whatever you require, we can make you secure.";
	messages[cell] = "Does your cell from the 80's need a new battery, or are you in the market for an upgrade? Stop by and see what we can do for you.";
	messages[alarms] = "Protect your home with our comprehensive array of security systems. For your home or business, we can easily design a custom securty system to fit your specific needs.";
	messages[towers] = "Does your aging, rusted antenna have you down? From Wireless Internet to other forms of wireless communication, we can help your structure your communication setup around your existing business. It's that easy.";
	messages[phones] = "From office phones and intercoms to home phones and portables, we stock a large amount of phones and phone accessories designed specifically for you. Whether you're looking for a simple phone to get you through the work day, or a system to handle numerous callers, we may just have what you've been looking for!";
function showMessage(whichItem) {
	if (document.getElementById && document.createElement){
		temp = document.getElementById('message');
			tempH3 = temp.getElementsByTagName('H3');
			tempP = temp.getElementsByTagName('P');
			tempH3[0].innerHTML = headings[eval(whichItem)];
			tempP[0].innerHTML = messages[eval(whichItem)];
	}
}



