$(document).ready(function(){
	var now = new Date();
	var hour = now.getHours();
	var minute = now.getMinutes();
	var second = now.getSeconds();
	var timeString = hour +	'_' + minute + '_' + second;

	/* flash movie */
	var pluginOptions = { version: 8, update: false };
	$('#poll').flash({ src: 'poll.swf?xml=config.xml&xyz=result.xml&timeString', width: 290, height: 292, wmode: 'transparent' }, pluginOptions);
	
});
