jQuery(document).ready(function() {
	jQuery("div.scrollable").scrollable({
		size : 1,
		loop : true,
		easing : 'swing',
		speed: 300,
		interval: 3000,
		clickable: true
	}); 
	$.easing.custom = function (x, t, b, c, d) { 
	    var s = 1.70158;  
	    if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b; 
	    return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b; 
	}
	$("div.scrollable-shelf").scrollable ({
		items: '.shelf-items',
		loop: 'true',
		navi: '.navi-shelf',
		size: 3,
		loop: 'true',
		easing: 'custom',
		interval: 5000,
		speed: 1500
	});     
}); 	
// ==================
// = gMaps (api v3) =
// ==================
function initialize() {
  var latlng = new google.maps.LatLng(32.229302,-110.965213);
  var myOptions = {
    zoom: 12,
    center: latlng,
	  disableDefaultUI: true,
    mapTypeId: google.maps.MapTypeId.ROADMAP,
    navigationControl: true,
	  navigationControlOptions: google.maps.NavigationControlStyle.SMALL
	  
  }
  var map = new google.maps.Map(document.getElementById("google-map"), myOptions);
	/*
		TODO microformat address
	*/
	var infowindow = new google.maps.InfoWindow({ content: '<h4>Revolutionary Grounds</h4> <div class="hidden-ie"><div class="street">606 N. 4th Ave</div><div class="location">Tucson, AZ 85719</div></div><a title="Get directions" href="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=604+n+4th+ave,+tucson,+az&sll=37.579413,-95.712891&sspn=38.999941,93.164063&ie=UTF8&ll=32.230428,-110.96539&spn=0.010255,0.022745&z=16&iwloc=A&iwstate1=dir" target="_blank">Click for Directions</a>' });
  var marker = new google.maps.Marker({
      position: latlng,
      map: map,
      title:"Hello"
  });    
  infowindow.open(map,marker);
}