$(document).ready(function()
	{
	    /* Section Dropdown */
		//pull in a the section.js JSON data and fill the #section_dropdown element.
		$.getJSON("/includes/newsite/sections.js", function(json) {
		    $.each(json.sections, function(i, ritem){
		        $("#section_dropdown").append("<option value=\"" + ritem.url + "\">" + ritem.text + "</option>");
		    });
		});
		
		
	    /* Choose a section */
		$("#section_button").bind("click", function(e){
		    if ($("#section_dropdown").val() != "http://"){
    		    window.open($("#section_dropdown").val(), "sections");
    		} else {
    		    alert("We're sorry there is currently no site available for this section.");
    		}
		});
	}
);