// JavaScript Document

$(document).ready(function(){

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

	  
    });