// JavaScript Document
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

var x = 1;
function rotateImg(){
	if(x < 5){
		x = x + 1;
	} else {
		x = 1;
	}
	document.getElementById('placeholder').src = "images/homeAnim0" + x + ".jpg";
}