// setzt ein Bild als primärbild
function setImage(sImagePath,sBigImagePath) {
	document.getElementById("divPrimaryPicture").innerHTML = '<div align="center"><a href="' + sBigImagePath + '" rel="lightbox[show]"><img src="'+sImagePath+'" border="0"></a></div>';
}
// 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';
}

