/*
Preload images script
By JavaScript Kit (http://javascriptkit.com)
Over 400+ free scripts here!
*/
if (document.images) {
var myimages=new Array()
function preloadimages(){
for (i=0;i<preloadimages.arguments.length;i++){
myimages[i]=new Image()
myimages[i].src=preloadimages.arguments[i]
}
}
}
 
//Enter path of images to be preloaded inside parenthesis. Extend list as desired.
preloadimages(
 "http://www.inhousetechies.com/i/menu-home2.png",
 "http://www.inhousetechies.com/i/button-services2.png",
 "http://www.inhousetechies.com/i/button-network2.png",
 "http://www.inhousetechies.com/i/button-contact2.png",
 "http://www.inhousetechies.com/i/bullet.gif"
)