$(document).ready(function() {
	$('.popSalle').live('click',function() {
		
		$.get($(this).attr('href'),function(data) {
			Shadowbox.open({
				content:data,
				player:'html',
				height:600,
				width:600
				
			});
		});
		
		return false;
	});
	
	$(".ficheConcert .play").each(function(index,element) {
		var html = $(element).html();
		$(element).html(html+'<div class="boutonPlay"><a href="javascript:;"></a></div>');
	});
	
	$("a.play").live('click',function() {
		$.get($(this).attr('href'),function(data) {
			Shadowbox.open({
				content:data,
				player:'html',
				height:385,
				width:640,
				options: {handleOversize:'resize' }
				
			});			
		});

		return false;
	});
});


