function jsEnabled() {
	
	var welcomeImage = document.getElementById('welcome-image');
	if(!welcomeImage) 
		return;
		
	var introduction = document.getElementById('introduction');
	
	if(!introduction) 
		return;
		
	welcomeImage.className = 'js-enabled';
	introduction.className = 'js-enabled';
}

function swfReplace()
{
	var img = new swfir();
	img.specify("border-width", "10");
	img.specify("border-radius", "15");
	img.specify("border-color", "fff");
	img.specify("rotate","-3");
	img.specify("shadow-blur", "15");
	img.specify("background-color", "9dcee0");
	img.specify('src', 'js/swfir.swf');
	img.swap("#welcome-image img");
}


function init() {
	
	if(!document.getElementById)
		return;
	
	jsEnabled();
	swfReplace();
}

window.onload = init;
