var IE='\v'=='v';
if(!IE) {
var oldurl = '';
$(document).ready(function()	{
    
    $('a').each(function(){
       var hr = $(this).attr('href'); 
       if(hr.indexOf('://') + 1) {
    	   $(this).attr('target','_blank');
    	}
    });


	$("a").click(function(){
	   if (linkajax){

       var h = $(this).attr('href');
       
       if(h.indexOf('://') + 1) {
    	   return true;
    	}
        
       if ($(this).attr('type')=='noajax'){
            return true;
       } 
       
       if (h==oldurl){ return false; }
       oldurl=h;
       
       if (h=='/'){
        $("#content").stop().animate({top:-1000},'slow');
         $("#content div#in").html('');
         return false;
       }
       var ct = $("#content").css("top");
       $("#p").css('display','block');
                $("#content div#in").load(h+'&ajaxload',function(){
                    $("#content").animate({top:-82},'slow');
                    $("#content div#in").jScrollPane();
                    $("#p").css('display','none');
                })
           
       
       return false;
       }
	});

				});
}                
