/*
	Copyright Fabien Schwartz 2010
	http://www.fabienschwartz.ch
*/

var imgName = new Array();

function loadImg(pos) {
	var iName;
	var path = document.location.href;
	var ePos = document.location.href.search(/#|index|\?/);
	if(ePos != - 1)
		path = path.substring(0,ePos);	
	getElementsByClassName2("img","mainImg");
	if(pos) {
		iName=imgName[(0-pos)/700];
	} else { // pos = 0
		iName=imgName[0];
	}
    document.getElementById(iName).src=path+p+"img/"+imF+iName+".jpg";
}

function getElementsByClassName2(tagname, findClass) {
if(tagname)
{
 var aElm=document.body.getElementsByTagName(tagname);
 for(var i=0; i<aElm.length; i++) {
  if(aElm[i].className==findClass) {
   	imgName.push(aElm[i].id);
   }
  }
 }
}