// JavaScript Document

$(document).ready(function(){

     
	 $('a').click( function() {
			
			
			
			if ($(this).attr('href').substring(0,4)=="http")
			{
		        window.open( $(this).attr('href') );
        		return false;
			}
		
    });
	 
	 $('a[rel="external"]').click( function() {
					window.open( $(this).attr('href') );
					return false;
				});
	 
	 
	 
	
  
	 
	

	  
    });
