/* Start up the swf - main flash menu - requires swfobject file to be embedded 
* Note that this starts the preloading, document shouldnt be ready before the html is ready to be injected.
*/
playerVersion = $.flashPlayerVersion[0];

preLoadedMenu = "";
preLoadedReference = "";
ie6 = false;

if (playerVersion >= 9 ) {
	
	preLoadedMenu = $.flash({
		swf: 'http://www.masteryourstudies.fi/images/main_menu.swf',
		height: 306,
		width: 586,
		version: 9
	});
    
	    preLoadedReference = "";
    }

/* All this is executed when the page finishes loading */	
$(document).ready(function() {
	/* Collapse the menu */
	$('HTML').addClass('js_active');
	$('.start #reference').cycle(
    	{
        	fx:	'fade',
            timeout: 7000,
            random: true
        }
    );

    if(typeof document.body.style.maxHeight === "undefined")
		ie6 = true;

	/* Inject the preloaded flash html IF we have a valid version of the flash player and it isnt IE6*/
	if (playerVersion >= 9 && !ie6) {
    	if (preLoadedMenu.length > 0)
			$('#gns').html(preLoadedMenu);
        
        if (preLoadedReference.length > 0)
			$('#reference_aa').html(preLoadedReference);
	}

});
