/**
 * @author Harry Rolf
 */
$(document).ready(function(){
	$(window).load(function() {
	   if (jQuery.browser.msie) {
		if(parseInt(jQuery.browser.version) == 9) {
		  // list every element that you would like to adorn with corners below
		  $(".column").corner("tl tr bl br 8px");
			}else { }
		}else{
		  // list every element that you would like to adorn with corners below
		  $(".column").corner("tl tr bl br 8px");
		}
		$("#background").fullBg();
    });

}); // end doc ready


