jQuery(document).ready(function() {
	jQuery("pre").hover(function() {
		var codeInnerWidth = jQuery("code", this).width() + 10;
   	 if (codeInnerWidth > 563) {
			jQuery(this)
				.stop(true, false)
				.css({
					zIndex: "100",
					position: "relative"
				})
				.animate({
					width: codeInnerWidth + "px"
				});
			}
		}, function() {
				jQuery(this).stop(true, false).animate({
					width: 563
			});
		});
	});
