// JavaScript Document


$(document).ready(function(){ 
	
	LaunchSWF();
	
	$('#ConceptionLink').attr('target', '_blank');
	
});

function LaunchSWF(){
	
	//swfPath = 'media/swf/eiconcept.swf';
	swfPath = 'http://www.eiconcept.com/media/swf/eiconcept.swf';
	
	flashvars = {};
	params = {
    	scale: 'noscale',
		wmode: 'transparent'
	};
	attributes = {}

	swfobject.embedSWF(swfPath, "anim", "960", "650", "9.0.0", null, flashvars, params, attributes);

	setTimeout('CheckSWF()', 500);
}

function CheckSWF(){
	
	var swfSuccess =  $('#main').has('object');
	if(!swfSuccess.length){

		$('#anim').css('backgroundImage', 'url(themes/img/no-swf-alt.jpg)');
	}
	
	
}
