jQuery(document).ready(function(){
	//hide image located in the "graphic" class
	jQuery('div.graphic img').hide();
	
	//hide images located in the "float" classes (used by the speaking page videos)
	//jQuery('p.float img').hide();
	
	//hide the banner's heading tag
	jQuery('body.home div#banner h2').hide();
	
	//change the size of the banner to match our movie
	//jQuery('body.home div#banner').css({ 'height' : '356px' });
	
	//change the size of the content padding to match our movie
	//jQuery('body.home div#content').css({ 'padding-top' : '356px' });
	
	//set up the home page movie
	jQuery('body.home div#banner').flash({
		src: '/media/flash/bpp-video-bp1.swf',
		width: 636,
		height: 358,
		wmode:'transparent', 
		menu:'false',
		base:'.'
	});
	
	//set up the Flash diagram
	jQuery('#flash-diagram').flash({
		src: '/media/flash/bppdiagram.swf',
		width: 450,
		height: 239,
		wmode:'transparent', 
		menu:'false',
		base:'.'
	});
	
});