function checkLinks()
{
	
	$('a').each(function(){
		
		url = $(this).attr('href');
		
		if(url.indexOf('http://') != -1){
			alert('ok');
			$.ajax({
				
				type: "get",
				url: url,
				beforeSend: function(){
					alert('sned');
				},
				success:function(){ alert('ok'); },
				error: function(XMLHttpRequest, textStatus, errorThrown){
					alert(textStatus);
					if(errorThrown)
					{
						alert(errorTrown);
					}
					
				}
				
			});
		}
	});
	
}