	function content_resize()  
	{ 

		var windowHeight = $( window ).height(); 
		var bodyHeight = $(document).height();
		var totalHeight = $("#header").height() + $("#info").height() + $("#headings").height() + $("#content").height() + $("#footer").height();
		
		if ( totalHeight < bodyHeight ) {
		
			var difference = bodyHeight - totalHeight;
			var newFooterHeight = $("#footer").height() + difference;
				$( '#footer' ).css( {height: newFooterHeight} ); 
		
		}
		
		else {
			
		}
		
		$('img[@src$=.png]').ifixpng(); 
	
	} 
	

	var helvetica = {
		src: 'themes/greenaudit/swf/helvetica.swf'
	};

	sIFR.activate(helvetica);

	sIFR.replace(helvetica, {
		selector: 'h2'
		,fixWrap: 1
		,wmode: 'transparent'
		,css: [
		'.sIFR-root { color: #ffffff; font-size: 30px; font-weight: bold; leading: -6;}'
		]
	});

	sIFR.replace(helvetica, {
		selector: 'h4'
		,css: [
		'.sIFR-root { color: #42ac4e; font-size: 20px; font-weight: bold; leading: -3; margin-bottom: -10;}'
		]
	});

