$(document).ready(function() {
	var widgetURL
	switch($.cookie('dnpWidget')) {
		case 'cg':
			widgetURL = '/include/dnpfirststeps/dnpfirststepscg.jsp';
			break;		

		case 'nsy':
			widgetURL = '/include/dnpfirststeps/dnpfirststepsnsy.jsp';
			break;
		case 'sy':
			widgetURL = '/include/dnpfirststeps/dnpfirststepssy.jsp';
			break;

		case 'nrx':
			widgetURL = '/include/dnpfirststeps/dnpfirststepsnrx.jsp';
			break;
		case 'rx':
			widgetURL = '/include/dnpfirststeps/dnpfirststepsrx.jsp';
			break;
		case 'cu':
			widgetURL = '/include/dnpfirststeps/dnpfirststepscu.jsp';
			break;
		
	}
	if (widgetURL) {
		content = $.ajax({
			url: widgetURL,
			success: insertLoad
		}).responseText;
	}
});

function insertLoad(content) {
	$('#navLevel2').after(content);
	
}