// JavaScript Document

$(document).ready(function(){

   
	 	 $('a').click( function() {
								
			var comodo= $(this).attr('href');
			
			if (comodo.substring(0,5)=="http:")
			{
								
		        window.open( $(this).attr('href') );
    		    return false;
			}
    });
	 
	

	  
    });
