function GetXmlHttpObject()
{
if (window.XMLHttpRequest)
	{
	// code for IE7+, Firefox, Chrome, Opera, Safari
	return new XMLHttpRequest();
	}
if (window.ActiveXObject)
	{
	// code for IE6, IE5
	return new ActiveXObject("Microsoft.XMLHTTP");
	}
return null;
}

var srvcText;
var xmlhttp;
function srvcsHover(str) {
	xmlhttp=GetXmlHttpObject();
	if (xmlhttp==null)
		{
		alert ("Browser does not support HTTP Request");
		return;
		}
	if (str=="marketing") {
		srvcText="<p><span class=\"header\">Marketing</span><br />We have cutting edge software and tools to get you the best response from your marketing possible. With online response options, eye-catching variable data, real-time record tracking and reporting and our standard high-quality production, we can make you, and your marketing look your best!</p>";
	}
	if (str=="copy") {
		srvcText="<p><span class=\"header\">Copying</span><br />At Digital Edge, no job is too large or too small. If you're looking for black &amp; white or high quality color, we offer a great selection of paper stocks and finishing for your documents. Whether it is a paper original or digital artwork on a CD, emailed or uploaded to our FTP site, you will receive quality imaging and quick turnaround.</p>";
	}
	if (str=="banner") {
		srvcText="<p><span class=\"header\">Wide Format</span><br /><strong>Engineering Blue Prints</strong> - Digital Edge offers engineering plans up to 36\" wide to any length. We can take your originals or digital artwork. We will also save your originals on a CD if needed.<br /><br /><strong>Posters or Signs</strong> - From photos to banners, Digital Edge can output them in dazzling vivid colors in sizes up to 48\" wide to any length. The image can be printed on paper or vinyl media.</p>";
	}
	if (str=="print") {
		srvcText="<p><span class=\"header\">Printing</span><br />Whether you need business cards, glossy brochures, or a custom pocket folder, we can do it! We do the work in-house using our trusted and tested print partner enabling us to pass wholesale price savings on to you. Call or email us next time you need a quote.</p>";
	}
	if (str=="bind") {
		srvcText="<p><span class=\"header\">Finishing</span><br />Digital Edge offers a complete range of finishing services to ensure that your printed product receives the finishing touch they deserve. We've got the equipment and experience to fulfill your finishing needs.</p>";
	}
	if (str=="graphics") {
		srvcText="<p><span class=\"header\">Graphics</span><br />The internet has changed the way we do business; creating faster turn around times, online proofing, and the ability to upload and download to FTP sites. Whether it's a small job or an elaborate marketing package, we have eliminated the barriers in producing your print projects. We can accept all media transfer devices, CD/DVD, email, or upload to our FTP site.</p>";
	}
	document.getElementById("srvDesc").innerHTML=srvcText;
}

function srvcsOut(str) {
	outText="<p>Digital Edge has quite a few products and service to offer our customers. Please check out the list to the left to see a brief overview of just a few of the services that we have to offer.<br /><br />Thank you for visiting us!<br />If you have any questions, please email us at:<br /><a href=\"info@digitaledgecc.com\">info@digitaledgecc.com</a></p>";
	document.getElementById("srvDesc").innerHTML=outText;
}