function writeIt(what){
			var presentation = '<h3>Hello, dear</h3><p>I used to be a <a href="http://www.hyperisland.se">Hyper Island</a> student, now I work for <a href="http://www.soleilnoir.net" target="_blank">Soleil Noir</a> in Paris(not Texas).</p><p>I used to think of myself as a flash developer, now I just see myself as a developer working primarily with online content who\'s got a lot of flash experience.</p><p>Equally excited by cool API\'s (come on spotify! Gimme playlists!), new technologies and awesome content.</p><p>Really bad at keeping it serious for extended stretches of text. Hey have you seen that picture where there\'s a bear sitting at a picknick table? So great. The internet, I flipping love it.</p>';
			what = (what == "PRESENTATION") ? presentation : what;
			document.getElementById('textt').innerHTML = what;
		}
		
		function setSize(w,h) {
			var myFx = new Fx.Tween(document.getElementById("flashcontent"), {duration: 250, transition: Fx.Transitions.linear});
			myFx.start('height', h);
		}

		function callFlash(setVar){
    		thisMovie("SWF").switchMode(setVar);
		}

		function thisMovie(movieName) {
  	  		if (navigator.appName.indexOf("Microsoft") != -1) {
        		return window[movieName]
    		}else {
        		return document[movieName]
    		}
		}
