var fmidx=0;
var list=new Array(
new Array("
Le Hammond Inferno
Speech Defects
-", "NGyG7acZ-4U", 0),
new Array("
Smoove
Tired Feet
-", "", 0),
new Array("
Smoove
As If
-", "", 0),
new Array("
Röyksopp
Happy Up Here
-", "KmcPeuf5aXo", 0),
new Array("
Deadmau5 & Kaskade
I Remember
(D'n'B remix)", "BoYdxUI36Ck", 0),
new Array("
Audited Beats
Lil Green Bag
-", "0FodHsyabW0", 0),
new Array("
Caravan Palace
Jolie Coquine
-", "mahYSenVRPM", 0),
new Array("
Nikkfurie
Thé á La Menthe
-", "yWRpYBn4z5Q", 0),
new Array("
Magnifico
Hir aj kam, hir aj go
-", "XAcoZ5Uzr4I", 0),
new Array("
The Prodigy
Omen
-", "uVefPPr69NU", 0),
new Array("
Kalimba
Kalimba
-", "", 0),
new Array("
Max Pashm
Manea-k
-", "xAdkIQbKtPc", 0),
new Array("
PASO
Dancehall
-", "", 0),
new Array("
PASO
Hungarian Dish
-", "6OIHlOBROb4", 0),
new Array("
Kris Kross
Jump
(D*L*I*D Remix)", "", 0),
new Array("
Dario G
Carnaval De Paris
-", "Sohy-MJa6S0", 0),
new Array("
Bhangra Knights vs. Husan
Husan
-", "T7M5jZL7Q00", 0),
new Array("
Mr. Oizo
Flat Beat
-", "Kv6Ewqx3PMs", 0),
new Array("
Mark Knight & Funkagenda
Man With The Red Face
-", "HBBcjgIUoeA", 0),
new Array("
Mighty Dub Katz
Magic Carpet Ride
(Fatboy Slim remix)", "6J-VcFHa474", 0),
new Array("
Underworld
King Of Snake
(Fatboy Slim remix)", "vKe1LKphuXU", 0),
new Array("
JoeyStarr
Gaz-L
-", "A1DU7rBD9eA", 0),
new Array("
FatBoy Slim feat. Lateef
The Journey
-", "", 0),
new Array("
Gusto
Disco's Revenge 2008
-", "2n7ermSNMRA", 0),
new Array("
Mauracher
Meilenstein
-", "", 0),
new Array("
Nathan Fake
Outhouse
(Main Mix)", "NlZpYRjqfIw", 0)
);
function FavMClick(id, idx, ifx)
{
for(i=0;i<5;i++)
{
if (i == idx)
{
alert(id);
/*if (playerstat == 1)
{
btn_idx=null;
$("#player").tubeplayer("stop");
list[ifx][2]=0;
}
else
{*/
btn_idx=i;
$("#player").tubeplayer("play", id);
//list[ifx][2]=1;
//}
}
else
{
/*$("#favitembtn_"+i).attr("title", "Lejátszás");
if ($("#favitembtn_"+i).attr("rel") == "")
{
$("#favitembtn_"+i).attr("src", "/style/images/player_play_dis.png");
}
else
{
$("#favitembtn_"+i).attr("src", "/style/images/player_play_off.png");
}*/
}
}
}
function FavMusicsMove(direction)
{
if (direction == 'up')
{
if (fmidx > 0)
{
fmidx--;
}
}
else if (direction == 'down')
{
if (fmidx < 21)
{
fmidx++;
}
}
$("#line1").html(list[fmidx][0]);
$("#line2").html(list[fmidx+1][0]);
$("#line3").html(list[fmidx+2][0]);
$("#line4").html(list[fmidx+3][0]);
$("#line5").html(list[fmidx+4][0]);
$("#yline1").html("
");
$("#yline2").html("
");
$("#yline3").html("
");
$("#yline4").html("
");
$("#yline5").html("
");
}