// JavaScript Document
<!--
if (document.images) {
imageOn = new Image();
image1On = new Image();	
image2On = new Image();
image3On = new Image();
image4On = new Image();
image5On = new Image();
image6On = new Image();

imageOn.src = "images/ashfield_removals_homepage1.jpg" ; 
image1On.src = "images/about_ashfield_removals1.jpg" ; 
image2On.src = "images/ashfield_removals_services1.jpg" ; 
image3On.src = "images/ashfield_removals_price_guide1.jpg" ; 
image4On.src = "images/contact_ashfield_removals1.jpg" ; 
image5On.src = "images/rapid_quotes_ashfield_removals1.jpg" ; 
image6On.src = "images/discount_ashfield_removals1.jpg" ; 

imageOff = new Image();	
image1Off = new Image();
image2Off = new Image();
image3Off = new Image();
image4Off = new Image();
image5Off = new Image();
image6Off = new Image();

imageOff.src = "images/ashfield_removals_homepage.jpg" ; 
image1Off.src = "images/about_ashfield_removals.jpg" ; 
image2Off.src = "images/ashfield_removals_services.jpg" ; 
image3Off.src = "images/ashfield_removals_price_guide.jpg" ; 
image4Off.src = "images/contact_ashfield_removals.jpg" ; 
image5Off.src = "images/rapid_quotes_ashfield_removals.jpg" ;
image6Off.src = "images/discount_ashfield_removals.jpg" ;
}

function img_on(img_name) {

if (document.images) {
document[img_name].src = eval(img_name + "On.src");

}
}

function img_off(img_name) {
if (document.images) {
document[img_name].src = eval(img_name + "Off.src");

}
}
-->
