function teaserFlash(id,swf){
	if($.fn.flash.hasFlash.playerVersion()<8){
		$('#'+id).flash(
			{
				src: '../flash/playerProductInstall.swf',
				width: 475,
				height: 198
			},
			{ version:6.65, expressInstall: true }
		);
	}
	else{
		$('#'+id).flash(
				{src: swf,
						width: 475,
						height: 198,
						wmode: 'transparent'
				},
				{ version: 8 }
		);
	}
};