		$(document).ready(function(){
		
			$('#flash').flash(
				{ 
					src: '/_assets/flash/plg_homeani.swf', 
					width: 393,
					height: 400,
					wmode: 'transparent',
					
					flashvars: { img_path: '/_images/flash/images/', xml_path: '/_assets/xml/' }
					// flashvars: { foo: 'bar', baz: 'zoo' } // pass some vars to the Flash
				 },
				 { 
					version: 9,
					update: false // stay quiet, don't offer installation of Flash Player 
					// update: false // stay quiet, don't offer installation of Flash Player 
					// expressInstall: true // offer installation of Flash Player 
				 }
	
			);

			// insert the image if Javascript is enabled, but flash-player(version) not installed
			$('#flash:not(:has(embed,object))').html('<img src="/_images/non-flash.jpg" alt="" />');
			
		});