

$(document).ready( function(){
  $('a.movie_link').each(function(i){
	  var regExp = /.*play\=([0-9]+)$/;
	  var id = regExp.exec($(this).attr('href'));	
	  if(id && id[1]){
	  	$(this).attr('href', '#mbmb_flash_videos');
	  	//$(this).attr('onclick', 'playMovie('+id[1]+')');
	  	$(this).click(function () {
	  		playMovie(id[1]);
	  	});
	  }
	});
});    


function playMovie(n) {
	$.getJSON(Drupal.settings.mbmb_filme.json_url+'/'+n, function(json){
  		$('#movie_title').html(json.title);
  		$('#movie_description').html(json.teaser);
  		swfobject.getObjectById(Drupal.settings.mbmb_filme.player_id).playVideo(json.field_dateiname[0].value);
	});
}   



