/************************************************************/
/*															*/
/*	Goldwiege  pointer-script								*/
/*															*/
/*	lombego systems 2009 => www.lombego.de					*/
/*															*/
/************************************************************/


function cursor(id) {

	
	var imageCounterArr = document.getElementById(id).getElementsByTagName('img');
	
	var imageCounter = imageCounterArr.length;
	
	if (imageCounter > 1)
	{
		document.getElementById(id).className='dia_cursor_arrow';
	}	
	
	if (imageCounter == 1 || imageCounter == 0)
	{
		document.getElementById(id).className='dia_cursor_standard';
	}
	
	
}