$(function() {
	
	// scrollables...
	$("div.scrollable").scrollable({
		vertical: true,
		size: 3
	}).circular().navigator().autoscroll();
	
	$("div.alerts").scrollable({
		vertical: true,
		size: 1,
		speed: 500
	}).circular().navigator().autoscroll();
	
	$("div.promos").scrollable({
		vertical: false,
		size: 1,
		speed: 500
	}).circular().navigator().autoscroll();
	
	
	
	
	$("#espanol a[rel]").overlay({top: 150});
	
	$("#english a[rel]").overlay({top: 150});
	
	$("#mapHolder a[rel]").overlay({
		top: 150,
		onLoad: function() {
			var address = $("#theMap").html();
			$("#theMap").googleMap(address);
		},
		onClose: function() {
			$("#theMap").html("96 Winter Street Reno, NV 89503");
		}
		
	});
	
	$("li .hasTip").tooltip({position: "center left"});
	
	// we need to do an overlay, and put the espanol forms in it...
	//$("#mapHolder a[rel]").overlay({top: 150});
});
