$(document).ready(function() {
	var height = parseInt($('#content').css('height'));
	$('#content > div').each(function() {
		$(this).css('height',(height - 40)+'px');
	}); 
});
