// ------------------------------------------
// ------------------------------------------
// THIS CONTROLS THE HOMEPAGE IMAGE TOOLTIPS
// ------------------------------------------
// ------------------------------------------

function addIndexImage(){
var add='<div id=\"pc-print\"><div class=\"bubble\"><img src=\"i/pg/print.jpg\" class=\"pic\"><h5>Print</h5><p><b>Lithographic printing</b></p><p>Litho printing is essential for any business large or small and is ideal for producing varied literature ranging from single colour letterheads to glossy brochures & presentation folders. Our Heidelberg presses provide the quality, flexibility and high volume capacity needed for a wide range of the most demanding jobs.</p><p><b>Digital printing</b></p><p>Digital technology offers printing straight from your computer disc. This advanced technology is cutting job turnaround times and offers the highest quality every time. Our Nexpress can print single or double sided up to A3+ size. There is no minimum quantity and jobs can be produced instantly which means you can reduce the stock you hold. Great for personalised mailings including printing variable data.</p></div></div>';
add +='<div id=\"pc-copy\"><div class=\"bubble\"><img src=\"i/pg/copy.jpg\" class=\"pic\"><h5>Copy</h5><p>We have high speed digital copier/network printers form the Konica Minolta range.  Copies from the glass in colour or black & white for graphic, photographic or business applications are clean & crisp.  All are networked to PC & Mac for personalised print & variable data printing of mail merge & labels.  A range of on-line finishing equipment produces complete documents; folded, stapled, hole-punched, booklets.</p></div></div>';
add +='<div id=\"pc-design\"><div class=\"bubble\"><img src=\"i/pg/design.jpg\" class=\"pic\"><h5>Design</h5><p>Our design studio will convert your idea\'s to print ready documents.  The \'look\' is important to you, so our designers listen to your brief & present their idea\'s to you for discussion.  Only when you\'re happy do we proceed to print ready & you always have the final say when you sign off the proofs.  We work on both PC & Mac platforms; we have an extensive range of software for design applications & we can output artwork files as PDF\'s for you to view on your office computer.</p></div></div>';
add +='<div class=\"indeximage\"><p><img src=\"i/pg/print-copy-design.jpg\" width=\"263\" height=\"237\" border=\"0\" id=\"pcd-pic\" usemap=\"#Map\"><map name=\"Map\"><area shape=\"rect\" coords=\"2,2,82,33\" href=\"#\" onMouseOver=\"show(\'pc-print\')\" onMouseOut=\"hide()\"><area shape=\"rect\" coords=\"180,83,261,126\" href=\"#\" onMouseOver=\"show(\'pc-copy\')\" onMouseOut=\"hide()\"><area shape=\"rect\" coords=\"85,179,182,216\" href=\"#\" onMouseOver=\"show(\'pc-design\')\" onMouseOut=\"hide()\"></map></p></div>';
document.write(add);
}


// ------------------------------------------
// ------------------------------------------
// SHOW / HIDE DIVS FOR HOMEPAGE
// ------------------------------------------
// ------------------------------------------

var w3c = (document.getElementById) ?true:false;
var iex = (document.all)            ?true:false;
var ns4 = (document.layers)         ?true:false;
var supported = (w3c || iex || ns4) ?true:false;

var active = false;
var curObj,curNest;

var mousex, mousey;

function mousemoved (evt){

	if(iex){
		mousex = window.event.clientX+document.body.scrollLeft;
		mousey = window.event.clientY+document.body.scrollTop;
	}
	else if(ns4){
		mousex = evt.pageX+window.pageXOffset;
		mousey = evt.pageY+window.pageYOffset;
	}
	else{
		mousex = evt.pageX;
		mousey = evt.pageY;
	}
	if(active){
		shiftTo(curObj, mousex-320, mousey-100, curNest);
	}
	return true;

}

function getStyle (objstr, nest){
	nest = (nest) ? "document."+nest+"." : "";
	return (w3c) ? document.getElementById(objstr).style : (iex) ? document.all[objstr].style : (ns4) ? eval(nest+"document."+objstr) : false;
}
function shiftTo (objstr, x, y, nest){
	var obj = getStyle(objstr,nest);
	if(iex){
		obj.pixelLeft = x;
		obj.pixelTop = y;
	}
	else if(ns4){
		obj.moveTo(x,y);
	}
	else if(w3c){
		obj.left = x;
		obj.top = y;
	}
}
function show (objstr,nest){
	curObj = objstr;
	curNest = (nest) ? nest : null;
	getStyle(objstr,nest).visibility = "visible";
	active = true;
}
function hide (){
	getStyle(curObj,curNest).visibility = "hidden";
	active = false;
}

if(supported){
	if(ns4){
		document.captureEvents(Event.MOUSEMOVE);
	}
	document.onmousemove = mousemoved;
}

//////////////////////




