// JavaScript Document\
$(document).ready(function(){	
	$(".boxes").hide(); //this hided all the boxes for the work area
	$(".boxes:eq(0)").show(); //this shows only the first gallery for the work
	$(".thechoices").change(function(){ //if you select on of the choices in the menu
	$("." + this.value).show().siblings().hide(); //this hides the others and shows the one you chose
	});
		$(".thechoices").change();
	});
