/**
 *	Resize the APFlashBanner
 *	@param width The width
 *	@param height The height
 */
function APFlashBannerResize( width, height, direction ) {
	//APFlashBannerLog( "resizing to width: "+width+" and height: "+height );
		$('#APFlashEmbed').height( height );
		$('#APFlashEmbed').width( width );
		$('#APFlashBanner').css({
			width: width,
			height: height
		});
		$('#APFlashBannerWrapper').css({
			width: width,
			height: height
		});
}

/**
 *	Although not necessary, used as the
 *	external interface to log data
 *	to the console from the flash object
 *	@param string The string to log	
 */
function APFlashBannerLog( string ) {
	console.log( string );
}

