﻿// ready for jQuery DOM manipulation
$(function(){

	// external links
    $('A[rel="external"]').click( function() {	
        window.open( $(this).attr('href') );
        return false;
    });
	
	// e-mail adress antispam function
	$('a.email').nospam({ replaceText: true });	

});
