// JavaScript Document
$(function() {
	// symbicort layer
	$(".symbicortShow").click(function(e) {
		
		// choose link
		$("a[class^=linkSymbicort]").hide();
		$("a[class$=" + $(this).attr("ref") + "]").show();
		
		// show layer
		e.preventDefault();
		closeAllPanels("er1PopupSymbicort");
	});

});
