var colors = {'home':'#dc1350',
	      'band':'#00a352',
	      'repertoire':'#fff200',
	      'luister':'#dc1350',
	      'bekijk':'#00a352',
	      'agenda':'#fff200',
	      'contact':'#dc1350'};

function init_menu(){
  $('.menuitems img').hover(function(event){
      var cl = event.target.parentNode.className;
      $('tr.menuline td.'+cl).css('background-color', colors[cl]);
    }, function(event){
      var cl = event.target.parentNode.className;
      if(cl.indexOf('sel') == -1)
	$('tr.menuline td.'+cl).css('background-color', 'white');
      
    });
  $('.members a').hover(function(event){
      var cl = event.target.className;
      var photo = 'images/'+cl+'.jpg';
      $('img.right_photo').attr('src', photo);
      $('p.photo_title').text(event.target.text);
    },
    function(event){});
}
function showMovie(id){
  $('.right_movie').empty();
  $('.right_movie').append('<iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/'+id+'" frameborder="0" allowfullscreen></iframe>');
}

