$(document).ready(function() {
	var widgetURL
	switch($.cookie('fibroWidget')) {
		case 'nrx':
			widgetURL = '/include/fibrofirststepsnrx.jsp';
			break;
		case 'nsy':
			widgetURL = '/include/fibrofirststepsnsy.jsp';
			break;
		case 'rx':
			widgetURL = '/include/fibrofirststepsrx.jsp';
			break;
		case 'sy':
			widgetURL = '/include/fibrofirststepssy.jsp';
			break;
	}
	if (widgetURL) {
		content = $.ajax({
			url: widgetURL,
			success: insertLoad
		}).responseText;
	}
});

function insertLoad(content) {
	$('#navLevel2').after(content);
	//	$('#firststeps').css('display','none').fadeIn('slow');
}