<!--

// Display status bar message

function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}

// Opens links off page

// root domain below (All links containing this root will NOT open in new window):
var mydomain="pierocastiglioni.com"

function dynamiclink(){
	for (i=0; i<=(document.links.length-1); i++) {
	if (document.links[i].hostname.indexOf(mydomain)==-1&&document.links[i].href.indexOf("http:")!=-1)
	document.links[i].target="_blank"
	}
}

// Charges pic and turns them onMouseOver etc

var Pic = new Array

// menu images

Pic[0] = '../../pic/b_back.gif'
Pic[1] = '../../pic/b_back_over.gif'

Pic[2] = '../../pic/b_forward.gif'
Pic[3] = '../../pic/b_forward_over.gif'

Pic[4] = '../../pic/s_line.gif'

var p = Pic.length
var preLoad = new Array()
var i = 0;
for (i = 0; i < p; i++){
     preLoad[i] = new Image()
     preLoad[i].src = Pic[i]
}

function switchImage(whichImage,imageNumber){
   document.images[whichImage].src = preLoad[imageNumber].src
}

// Remove dots around the image when clicked

function RemoveDot() {
for (a in document.links) document.links[a].onfocus = document.links[a].blur;
}

if (document.all) {
document.onmousedown = RemoveDot;
}

file:

//-->
