	
$(function() {
	
	$("a.external").attr("target","_blank");
	
	if(IE6) {
		$('pre').each(function() {
			pre = $(this);
			pre.wrap('<span class="ph" />');
			pre.parent('span').height(pre.height() + 22);
			pre.css('position','absolute').css('margin','0');
		});
	}
		
	$('pre').hover(
		function() { 
			$(this).stop().animate({'width':'912px'},500, "bounceout"); 
		},
		function() { 
			$(this).stop().animate({'width':'498px'},500, "bounceout"); 
		}
	);
	
});