$(function(){

	$('iframe').attr('src', $('.content > p').text());
	$('.content > p').remove();

	$('iframe').height($(window).height() - 120);
	$('iframe').width($('#main').width());
	
	$(window).resize(function(){
		$('iframe').height($(window).height() - 120);
		$('iframe').width($('#main').width());	
	});
	

	
});

