$(document).ready(function() {
	var widgetURL
	switch($.cookie('gadWidget')) {
		case 'cg':
			widgetURL = '/include/gadfirststeps/gadfirststepscg.jsp';
			break;		

		case 'nsy':
			widgetURL = '/include/gadfirststeps/gadfirststepsnsy.jsp';
			break;
		case 'sy':
			widgetURL = '/include/gadfirststeps/gadfirststepssy.jsp';
			break;

		case 'nrx':
			widgetURL = '/include/gadfirststeps/gadfirststepsnrx.jsp';
			break;
		case 'rx':
			widgetURL = '/include/gadfirststeps/gadfirststepsrx.jsp';
			break;
		case 'cu':
			widgetURL = '/include/gadfirststeps/gadfirststepscu.jsp';
			break;
		
	}
	if (widgetURL) {
		content = $.ajax({
			url: widgetURL,
			success: insertLoad
		}).responseText;
	}
});

function insertLoad(content) {
	$('#navLevel2').after(content);
	
}