﻿$(function() {
    
    /**
    * open new window for all external links (a[rel='external'])
    */
    $("a[rel='external']").each(function() {
        $(this).bind("click.external", function() {
            window.open(jQuery(this).attr('href'));
            return false;
        });
    });



    /**
    * misc
    */
	if (typeof(KIM) == 'undefined') { KIM ={};} 
    KIM.bookmark.initialize();
    KIM.bgswitch.initialize();
    KIM.navigation.initialize();
});
