/**
 * GBS Freight
 * http://www.gbsfreight.co.uk/
 */
typeof jQuery != 'undefined' && jQuery('a').live( 'click', function() {
	if ( !this.href || this.href.indexOf( 'http' ) !== 0 || this.href.indexOf( window.location.host.toLowerCase() ) !== -1 )
		return true;
	window.open( this.href );
	return false;
});

jQuery(document).ready(function($) {
	$( '#nav li' ).hover( function() { $(this).addClass( 'hover' ); }, function() { $(this).removeClass( 'hover' ); } );
});
