/**
 * Include this on flash sites into the alternative html content for users coming from search engines.
 * Do not include this to admin pages.
 **/
$(document).ready(function() {

	if (window.location.pathname && window.location.pathname!='/' && window.location.pathname!='/admin' && swfobject.hasFlashPlayerVersion("9.0.0")) {
		
		if (confirm('Start from front page with the flash version.')) {
			top.location.href='/';
		}

	}

});
