$(document).ready(
	function(){
		if ($.support.opacity) {
		
			$(".jquery-hover, #page_content a").fadeTo(0, 0.4);
			$(".jquery-hover, #page_content a").hover(
				function(){
					$(this).fadeTo(300, 1.0);
				},
				function(){
					$(this).fadeTo(300, 0.4);
				}
			);
		}
	}
);

$(document).ready(
	function(){
		prettyPrint();
	}
);


$(function(){
	$("a.go_to_top").click(
		function(){
    	$('html,body').animate({ scrollTop: 0 }, 'slow','swing');
     	return false;
		}
	)
});

$(function(){
	$("a[href^='http://']")
		.not($('a[href^="http://"]').find('img').parents('a'))
    .addClass("extlink")   
    .attr("target", "_blank");  
});

$(function(){
	$("a[href^='https://']")
		.not($('a[href^="https://"]').find('img').parents('a'))
    .addClass("extlink")   
    .attr("target", "_blank");  
});


