// Basic Vicious functions

function swap_news_tab(table)
{
	document.getElementById(table).style.backgroundImage ='url(images/table_bg_over.gif)';
}
function swap_news_back(table)
{
	document.getElementById(table).style.backgroundImage ='url(images/table_bg.gif)';
}

function swap_rnews_tab(table)
{
	document.getElementById(table).style.backgroundImage ='url(images/r_tabs_over.gif)';
}
function swap_rnews_back(table)
{
	document.getElementById(table).style.backgroundImage ='url(images/r_tabs_news.gif)';
}

function swap_ev_tab(table)
{
	document.getElementById(table).style.backgroundImage ='url(images/event_bg_over.gif)';
}
function swap_ev_back(table)
{
	document.getElementById(table).style.backgroundImage ='url(images/event_bg.gif)';
}
function swap_label_tab(table)
{
	document.getElementById(table).style.backgroundImage ='url(images/label_highlighter.gif)';
}
function swap_label_back(table)
{
	document.getElementById(table).style.backgroundImage ='url()';
}

function swap_text(label)
{
	var copy='';
	if(label == 'zip')
	{ copy = 'Releasing hot music in Australia that is licensed from other labels around the world.'; }
	if(label == 'vv')
	{ copy = 'Our Original label, now home to our own artists making Progressive, Techno & banging Club tracks.'; }
	if(label == 'v')
	{ copy = 'Vicious – Eclectic, interesting & diverse music without a dance floor focus.'; }
	if(label == 'vg')
	{ copy = 'Vicious Grooves – Vocal house, disco vibes & club grooves from our own artists.'; }
	if(label == 'vu')
	{ copy = 'Vicious Urban – Phat, funky R&B sounds.'; }


if(label == 'blank')
	{
		document.getElementById('labeltext').innerHTML=copy;
	}
	else
	{ document.getElementById('labeltext').innerHTML=copy;
}
}

function show_layer(layer)
{
	document.getElementById(layer).style.visibility='visible';
	
}


function hide_layer(layer)
{
	document.getElementById(layer).style.visibility='hidden';
	
}