$(function() {
	    
$(".video img").click(function(){
var number = $(this).attr("class");
var url = $(".video img."+number).attr("alt");
var overskrift = $('.video a.'+number).text();
$("div#media_content h2.overskrift").replaceWith('<h2 class=overskrift>'+overskrift+'</h2>');
$("iframe.big").removeAttr("src");
$("iframe.big").attr('src', url);


$('div.second').replaceWith('<h2>New heading</h2>');



});
});

$(function() {

$(".video a").click(function(){
var number = $(this).attr("class");
var url = $(".video img."+number).attr("alt");
var overskrift = $('.video a.'+number).text();
$("div#media_content h2.overskrift").replaceWith('<h2 class=overskrift>'+overskrift+'</h2>');
$("iframe.big").removeAttr("src");
$("iframe.big").attr('src', url);
});
});
