/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


jQuery(document).ready(function() {
	
	$('a.youtubelink').each(function() {
		
		var href = $(this).attr('href');
		var a = href.split('=');
		var id = a.pop();
		
		var t = $(this).attr('title');
		t = t+" <a href='http://www.youtube.com/user/EMSfellowship?feature=watch'>weitere Videos finden Sie auf EMS-TV</a>";
		$(this).attr('title',t);
		
		$(this).attr('href','http://www.youtube.com/embed/'+id);
		$(this).nyroModal();
	});
	
});
