// JavaScript Document
var currentnr = null;
function showmapitem(nr,status)
{

	if(status==1)
	{
		if(currentnr!=null)	
			$('mapitemimage'+currentnr).className = 'notselected'; 		
		currentnr = nr;	
		$('mapitemimage'+nr).className = 'selected'; 	

		/*gmarkers[nr].openExtInfoWindow(
				map,
				'simple_example_window',
				gmarkers[nr].html,
				{beakOffset: 3}
				);	*/
		//$(obj).removeClass('notselected'); 		
	}
}

