// JavaScript Document
function over(buttonid)
{
	document.getElementById(buttonid).src = "/images/" + buttonid + "_h.png";
}

function out(buttonid)
{
	document.getElementById(buttonid).src = "/images/" + buttonid + ".png";
}

function blog_over(buttonid)
{
	document.getElementById(buttonid).src = "http://dlacomputers.co.uk/images/" + buttonid + "_h.png";
}

function blog_out(buttonid)
{
	document.getElementById(buttonid).src = "http://dlacomputers.co.uk/images/" + buttonid + ".png";
}

//Preload over images
home_h = new Image(100, 34);
home_h.src = "/images/home_h.png";

services_h = new Image(100, 34);
services_h.src = "/images/services_h.png";

products_h = new Image(100, 34);
products_h.src = "/images/products_h.png";

projects_h = new Image(100, 34);
projects_h.src = "/images/projects_h.png";

contact_us_h = new Image(100, 34);
contact_us_h.src = "/images/contact-us_h.png";

blog_h = new Image(100, 34);
blog_h.src = "/images/blog_h.png";
