$(document).ready(function() {
	if($.cookie('autoPresenterPlayPause') == 'seen'){
			// Nowt
	}else{
		window.document.flashid.SetVariable("FLVAutoPlay", "true")
		window.document.flashid.Play();
		$.cookie('autoPresenterPlayPause', 'seen');
	};
});

