/**
 * JavaScript for the Digital UK Postcode Checker
 * 
 * Make all external links open in a new window
 * 	
 */
$(document).ready(function(){ 
	
	// open external links in a new window
    $('a[rel="external"]').click( function(e) {
        e.preventDefault();
        this.blur();
        window.open( $(this).attr('href') );
        return false;
    });

});