function goto(form) { 
  var index=form.select.selectedIndex;
  if (form.select.options[index].value != "0") {
    location=form.select.options[index].value;
  };
};

function toggle_list(list_id) {
	$(list_id).toggle();
};

/*
jQuery(document).ready(function($) {
  $('a[rel*=facebox]').facebox()
})
*/

$(document).ready(function() {
	$('a[rel*=facebox]').colorbox({transition:"elastic"});
	$(".inline").colorbox({inline:true, href:"#carmel_denver_map"});
	
	$("#scroller").simplyScroll({
		className: 'vert',
		horizontal: false,
		frameRate: 25,
		speed: 1,
		autoMode: 'loop'
	});

	
});