function _cursor(objekt){
	if(navigator.appVersion.substring(22,23) == "5"){
		objekt.style.cursor='hand';
	}else{
		objekt.style.cursor='pointer';
	}
}
