/* Requirements
http://www.google.com/jsapi
http://www.google.com/uds/solutions/slideshow/gfslideshow.js
*/
function load() {
      var samples = "http://picasaweb.google.com/data/feed/api/user/"+"lloyd.emelle"+"/albumid/"+"5472410000508141777"+"?thumbsize=1600&kind=photo";
      var options = {
        displayTime: 4000,
        transistionTime: 5600,
	fullControlPanel : false,
    	fullControlPanelSmallIcons : true,
    	pauseOnHover : false,
	imageClickCallback : myClickHandler


      };

function myClickHandler(entry) {
    window.location = "http://shop.ibnmajidclothing.com";
  }

      new GFslideShow(samples, "featured-items", options);

    }
    google.load("feeds", "1");
    google.setOnLoadCallback(load);
