$(document).ready(function() {

	$("#checkSL").click(function(e){
	/*Check if silverlight 3.0 is installed if not, redirect user to the non-silverlight page.*/
		if (Silverlight.isInstalled("3.0")) {
			window.location = "Developer.aspx"	
		}
		else  {/* If silverlight 3.0 is not installed then redirect to the silverlight page*/
			window.location = "DeveloperDownlevel.aspx"	
	 	}
	e.preventDefault();		
	}
);

});


