// JavaScript Document
var a
a=new Array();
//myspace
a[2]=new Image;
a[2].src="../pictures/site/logo-myspace-bk.png";
a[3]=new Image;
a[3].src="../pictures/site/logo-myspace.png";
//youtube
a[4]=new Image;
a[4].src="../pictures/site/logo-youtube-bk.png";
a[5]=new Image;
a[5].src="../pictures/site/logo-youtube.png";
//flickr
a[6]=new Image;
a[6].src="../pictures/site/logo-flickr-bk.png";
a[7]=new Image;
a[7].src="../pictures/site/logo-flickr.png";
//lastfm
a[8]=new Image;
a[8].src="../pictures/site/logo-lastfm-bk.png";
a[9]=new Image;
a[9].src="../pictures/site/logo-lastfm.png";
//thomann
a[10]=new Image;
a[10].src="../pictures/site/thomann-bk.jpg";
a[11]=new Image;
a[11].src="../pictures/site/thomann.jpg";

function roll(img,nb){
	eval("img.src=a["+nb+"].src");
}