/**
 * JavaScript behaviors for content elements.
 *
 * @copyright  Copyright (c) 2005-2008 Found Line, Inc. (http://www.foundline.com/)
 * @version    $Id: content.js 139 2010-04-11 17:11:51Z jason.pelletier $
 */


$("document").ready(function() {

    $("a[rel='history']").click(function(){
        $(this).each(function (i) {
            $.history.load(this.hash.substr(1));
        });
        return false;
    });

});
