
function initImages() {
	var Pic = new Array();
	
	// to add more images, just continue
	// the pattern, adding to the array below
	Pic[0] = 'fileadmin/templates/flash/onskepartner1.jpg'
	Pic[1] = 'fileadmin/templates/flash/onskelosning1.jpg'
	Pic[2] = 'fileadmin/templates/flash/onskeaffar1.jpg'
	Pic[3] = 'fileadmin/templates/flash/nyamedarbetare1.jpg'

	return Pic;
}

function showPage(path) {
	var filePath = path.src;
	var fileName = filePath.substring(filePath.lastIndexOf("/") + 1, filePath.lengt);
	if (fileName == "onskepartner1.jpg") {
		document.location.href = "http://www.rationellit.se/index.php?id=45";
	} else if (fileName == "onskelosning1.jpg") {
		document.location.href = "http://www.rationellit.se/index.php?id=41";
	} else if (fileName == "onskeaffar1.jpg") {
		document.location.href = "http://www.rationellit.se/index.php?id=43";
	} else if (fileName == "nyamedarbetare1.jpg") {
		document.location.href = "http://www.rationellit.se/index.php?id=5";
	}


}

