/* 	
 * This software is (c) 2009 Emtee Software & Consult, DK-8000 Aarhus, and all rights are reserved.
 * For further information see: http://www.emtee.dk, or contact info@emtee.dk
 */
 
 var cur_topnews = 0;
 var prev_topnews = 0;
 function over_topnews(id, imgPath) {
	if(id != cur_topnews) {
		prev_topnews = cur_topnews;
		cur_topnews = id;
		
		document.getElementById('topnews_fullView_' + prev_topnews).style.display='none';
		document.getElementById('topnews_limitedView_' + prev_topnews).style.display='block';
		
		document['rotate_topnews_img'].src = imgPath;
		
		document.getElementById('topnews_fullView_' + cur_topnews).style.display='block';
		document.getElementById('topnews_limitedView_' + cur_topnews).style.display='none';
		
	/*	xajax_rotate_topnews(prev_topnews, cur_topnews); */
	}
 }
