// setzt ein Bild als primärbild
function setImage(sImagePath,sBigImagePath) {
	document.getElementById("divPrimaryPicture").innerHTML = '<img src="'+sImagePath+'" border="0">';
}
// setzt den Hand Cursor bei thumbs
function handCursor(sImagePath,sBigImagePath,nEle_ID) {
	setImage(sImagePath,sBigImagePath,nEle_ID);
	document.getElementsByTagName('body')[0].style.cursor='pointer';
}
// setzt den normalen cursor wenn das thumb verlassen wird
function resetCursor() {
	document.getElementsByTagName('body')[0].style.cursor='default';
}
