/*
Preload images script
By JavaScript Kit (http://javascriptkit.com)
*/

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://dualcoastcreations.com/images/icons/facebook.png",
			  "http://dualcoastcreations.com/images/icons/twitter.png",
			  "http://dualcoastcreations.com/images/icons/youtube.png",
			  "http://dualcoastcreations.com/images/icons/yelp.png",
			  "http://dualcoastcreations.com/images/icons/facebook-h.png",
			  "http://dualcoastcreations.com/images/icons/twitter-h.png",
			  "http://dualcoastcreations.com/images/icons/youtube-h.png",
			  "http://dualcoastcreations.com/images/icons/yelp-h.png",
			  "http://dualcoastcreations.com/images/header_dcc_03.png",
			  "http://dualcoastcreations.com/images/feature_box_700x287.png",
			  "http://dualcoastcreations.com/images/featureText_bg_370x287.png",
			  "http://dualcoastcreations.com/images/main_bottom.png"
			  )
