
function position () {		
	$( "div.wrapper-left, div.wrapper-right" )
		.css ( "height", $( "div.wrapper" ).height () - 68 ); // 68 comes from the marginTop of the div.wrapper-left		
}

function flashify () {
	var path = "/flash/";
	$( "div.header" ).flash ( { src: path + "header.swf", width: 950, height: 376 } );
}

$( document ).ready ( flashify );
$( document ).ready ( position );
$( window ).resize ( position );
