/**
 * @author mgallen
 */
function intro_manager(obj)
{
       
	var shost = document.getElementById(obj);
	
	shost.style.display = 'none';
	document.getElementById("intro_js").style.display="block";
	document.getElementById("intro_js_holder").style.display="block";
	$('ul#intro_js').css('display','block');
	$('ul#intro_js').innerfade({
		animationtype:'fade',
		speed:'normal',
		timeout:4000,
		type:'sequence'
	});
}
function isPlugin(){
	var container = null;
	if(window.navigator.userAgent.indexOf('MSIE') >=0){
		try {
			control = new ActiveXObject('AgControl.AgControl');
			return true;
		}catch(e){
			return false;
		}
		
	}else{
		if(navigator.plugins['Silverlight Plug-In']) {
			return true;
		}else {
			return false;
		}
	}
}

function runBackSL(){
    var sl = document.getElementById("silverlightControlHost");

    
}