
function introductionVideoEmbed(id, file, image) {
	var flashvars = {
		"file": file,
		"image": image,
		"controlbar": "none",
		"autostart": "true",
		//"skin": "/workspace/assets/flash/jw_player/Modieus_Slim/stylish_slim.swf",
		"stretching": "fill"
	};
	
	var params = {
		"allowfullscreen": "true",
		"allowscriptaccess": "always",
		"wmode": "transparent"
	};
	
	var attributes = {
		"class": "introduction-video"
	};
	
	swfobject.embedSWF("/workspace/assets/flash/jw_player/player.swf", id, "310", "175", "9", "false", 
	flashvars, params, attributes);
};

$(function() {
	
	$('#IntroductionVideoMalmo').click(function() {
		introductionVideoEmbed("IntroductionVideoMalmo", "http://www.youtube.com/watch?v=hsDb-gcw4kk", "/workspace/images/school-malmo.jpg");
		return false;
	});
	
	$('#IntroductionVideoHelsingborg').click(function() {
		introductionVideoEmbed("IntroductionVideoHelsingborg", "http://www.youtube.com/watch?v=sIBAdV-Vf8o", "/workspace/images/school-helsingborg.jpg");
		return false;
	});
	
	$('#IntroductionVideoVaxjo').click(function() {
		introductionVideoEmbed("IntroductionVideoVaxjo", "http://www.youtube.com/watch?v=XK1RPeOUfTg", "/workspace/images/school-vaxjo.jpg");
		return false;
	});
	
});

/*introductionVideoEmbed("IntroductionVideoMalmo", "http://www.youtube.com/watch?v=hsDb-gcw4kk", "/workspace/images/school-malmo.jpg");
introductionVideoEmbed("IntroductionVideoHelsingborg", "http://www.youtube.com/watch?v=sIBAdV-Vf8o", "/workspace/images/school-helsingborg.jpg");
introductionVideoEmbed("IntroductionVideoVaxjo", "http://www.youtube.com/watch?v=XK1RPeOUfTg", "/workspace/images/school-vaxjo.jpg");*/

