JSFX.Rollover("winamp",      "fileadmin/template/images/play_wa.png");
JSFX.Rollover("realplayer",  "fileadmin/template/images/play_rp.png");
JSFX.Rollover("winmedia",    "fileadmin/template/images/play_wm.png");
JSFX.Rollover("phonostar",   "fileadmin/template/images/play_ps.png");
JSFX.Rollover("webplayer",   "fileadmin/template/images/play_web.png");




function show( id )
{
	document.getElementById( id ).style.position = "absolute";
	document.getElementById( id ).style.display = "block";
}
function hide( id )
{
	document.getElementById( id ).style.position = "relative";
   	document.getElementById( id ).style.display = "none";
}

var tabs = new Array();
var tabs_count = 0;

function tabadd( name )
{
	tabs_count++;
	tabs[tabs_count] = name;
}

function tab( name )
{
	if (true == hidestuff )
	{
		for( i=1; i<=tabs_count; i++)
		{
			hide( tabs[i] );
		}
		show( name );
		return false;
	}
}
