// JavaScript Document
img=new Array();
imgsrc=new Array();
imgsrc[0]="webapps/front/html/img/mmenu_posluchaj.gif";
imgsrc[1]="webapps/front/html/img/mmenu_posluchaj_on.gif";
imgsrc[2]="webapps/front/html/img/mmenu_dje.gif";
imgsrc[3]="webapps/front/html/img/mmenu_dje_on.gif";
imgsrc[4]="webapps/front/html/img/mmenu_toplisty.gif";
imgsrc[5]="webapps/front/html/img/mmenu_toplisty_on.gif";
imgsrc[6]="webapps/front/html/img/mmenu_nove_sety.gif";
imgsrc[7]="webapps/front/html/img/mmenu_nove_sety_on.gif";
imgsrc[8]="webapps/front/html/img/mmenu_news.gif";
imgsrc[9]="webapps/front/html/img/mmenu_news_on.gif";
imgsrc[10]="webapps/front/html/img/mmenu_imprezy_i_relacje.gif";
imgsrc[11]="webapps/front/html/img/mmenu_imprezy_i_relacje_on.gif";
imgsrc[12]="webapps/front/html/img/btn_play.gif";
imgsrc[13]="webapps/front/html/img/btn_play_on.gif";
imgsrc[14]="webapps/front/html/img/btn_cyjan_zobacz_wiecej.gif";
imgsrc[15]="webapps/front/html/img/btn_cyjan_zobacz_wiecej_on.gif";
imgsrc[16]="webapps/front/html/img/btn_magenta_zobacz_wiecej.gif";
imgsrc[17]="webapps/front/html/img/btn_magenta_zobacz_wiecej_on.gif";
imgsrc[18]="webapps/front/html/img/btn_yellow_zobacz_wiecej.gif";
imgsrc[19]="webapps/front/html/img/btn_yellow_zobacz_wiecej_on.gif";

//imgsrc[20]="webapps/front/html/img/box_dje_m_eska_live_rmx.gif"
//imgsrc[21]="webapps/front/html/img/box_dje_m_eska_live_rmx_on.gif"
	
imgsrc[20]="webapps/front/html/img/box_dje_m_armin_van_buuren.gif"
imgsrc[21]="webapps/front/html/img/box_dje_m_armin_van_buuren_on.gif"
imgsrc[22]="webapps/front/html/img/box_dje_m_bob_sinclar.gif"
imgsrc[23]="webapps/front/html/img/box_dje_m_bob_sinclar_on.gif"
imgsrc[24]="webapps/front/html/img/box_dje_m_carl_cox.gif"
imgsrc[25]="webapps/front/html/img/box_dje_m_carl_cox_on.gif"
imgsrc[26]="webapps/front/html/img/box_dje_m_david_guetta.gif"
imgsrc[27]="webapps/front/html/img/box_dje_m_david_guetta_on.gif"
imgsrc[28]="webapps/front/html/img/box_dje_m_ferry_corsten.gif"
imgsrc[29]="webapps/front/html/img/box_dje_m_ferry_corsten_on.gif"
imgsrc[30]="webapps/front/html/img/box_dje_m_john_digweed.gif"
imgsrc[31]="webapps/front/html/img/box_dje_m_john_digweed_on.gif"
imgsrc[32]="webapps/front/html/img/box_dje_m_puoteck.gif"
imgsrc[33]="webapps/front/html/img/box_dje_m_puoteck_on.gif"
imgsrc[34]="webapps/front/html/img/btn_magenta_zobacz_cala_liste.gif";
imgsrc[35]="webapps/front/html/img/btn_magenta_zobacz_cala_liste_on.gif";

for (i=0; i<imgsrc.length; i++)
{
	img[i]=new Image();
	img[i].src=imgsrc[i];
}

function swapImages(nazwa, nr)
{
	document[nazwa].src=imgsrc[nr];
}

function subMenu(mID, status)
{
	document.getElementById(mID).style.visibility=(status=="on") ? "visible": "hidden";
}