function iframer() 
{ 
	// get width of #content 
	frame_x = $('#content').width(); 
	// get height of #menu 
	frame_y = $('#menu').height(); 
	
	// apply height and width 
	$('#iframed').css('width', frame_x); 
	$('#iframed').css('height', frame_y); 
} 

$(document).ready( function() { iframer(); } );
$(window).resize( function() { iframer(); } );