﻿/// <reference path="jquery.intellisense.js" />

$(document).ready(function() {
    InitRoundedCorners();
    prettyPrint(function() {
         $("pre.prettyprint").css("visibility", "visible");
    });
});


InitRoundedCorners = function() {
	if (!$.browser.msie || ($.browser.msie && $.browser.version >= 7)) {
		$('.sfug-CodeBlock > div').each(function() {
			$(this).css("padding", "4px").corner("round 8px").parent().corner("round 10px");
		});
	}
}