$(document).ready(function(){
	$('div#menu ul').menu({});
	
	$('select#websites').change(function(){
		if ($(this).val() != $(this).children(':first').val())
		{
			document.location = $(this).val();
		}
	});
});
