$(document).ready(function(){
	$('.modTeaser').click(function(){
		var url = $(this).attr('data-url');
		if(url){
			url = 'http://www.theatersg.ch/' + url;
			window.location = url;
		}
	});
});

