function animated_show_topmenu(elem){
	elem.style.backgroundImage = 'url(/tpl/images/menu/video_bg.png)';	
	$('#topmenu').fadeIn(200);
}

function show_topmenu(elem){
	elem.style.backgroundImage = 'url(/tpl/images/menu/video_bg.png)';
	document.getElementById("topmenu").style.display = 'block';	
}

function hide_topmenu(elem){
	elem.style.backgroundImage = 'url(/tpl/images/menu/video_bg_red.png)';
	document.getElementById("topmenu").style.display = 'none';	
}
