$(document).ready(function() {
	var widgetURL;
	switch($.cookie('mddWidget')) {
		case 'cg':
			widgetURL = '/include/mddfirststeps/mddfirststepscg.jsp';
			break;
		case 'nsy':
			widgetURL = '/include/mddfirststeps/mddfirststepsnsy.jsp';
			break;
		case 'sy':
			widgetURL = '/include/mddfirststeps/mddfirststepssy.jsp';
			break;
		case 'nrx':
			widgetURL = '/include/mddfirststeps/mddfirststepsnrx.jsp';
			break;
		case 'rx':
			widgetURL = '/include/mddfirststeps/mddfirststepsrx.jsp';
			break;
		case 'cu':
			widgetURL = '/include/mddfirststeps/mddfirststepscu.jsp';
			break;
	}
	if (widgetURL) {
		content = $.ajax({
			url: widgetURL,
			success: insertLoad
		}).responseText;
	}
});

function insertLoad(content) {
	$('#navLevel2').after(content);
}