$(function(){

	$(".media_trigger").bind("click", function(){
	
		title = $(this).attr("title")
		the_content = $("#flash_content_wrapper").html()
	
	    // open a welcome message as soon as the window loads
	    Shadowbox.open({
	        content:    the_content,
	        player:     "html",
	        title:      title,
	        height:     338,
	        width:      600
	    });
	    
	    return false
	
	});
	
	$(".media_trigger2").bind("click", function(){
	
		title = $(this).attr("title")
		the_content = $("#flash_content_wrapper2").html()
	
	    // open a welcome message as soon as the window loads
	    Shadowbox.open({
	        content:    the_content,
	        player:     "html",
	        title:      title,
	        height:     338,
	        width:      600
	    });
	    
	    return false
	
	});

})