// JQuery 

$(document).ready(function() {
	var $showDivs = $('div[class=hidenow]').hide();
	$('select').change(function() {
    	var i = $('option', this).index( $(':selected')[0]);
    	$showDivs.hide().eq(i - 1).show();
		if (i > 0) {
		var opt = 'option-' + i;
	    var headline = $("#"+ opt + " h3").text();
		$('#mainheadline').text(headline);
		$("#"+ opt + " h3").hide();
		}
		else {
			$('#mainheadline').text("Select a Gallery");
		}
    });
}); 
