/*
 * jQuery Scroll To Object
 *
 * Copyright (c) 2009 Giulio Borrini
 *
 */
jQuery.fn.ScrollTo = function(duration) {
  return this.each(function(){
    $('html, body').animate({scrollTop: $(this).position().top}, duration);
  });
};
