function addBorders(){

	if ( $kuj.browser.msie ){
		if ( $kuj.browser.version == "6.0"){
			return;
		}
	}
	
		
	$kuj(".bordered").each(function (i) {
		this.style.border = "solid 1px";
		this.style.borderBottom = "none";
		this.style.width = (this.clientWidth - 2) + "px";

	});

	$kuj(".bordered div.content").each(function (i) {
		this.style.width = (this.parentNode.clientWidth + 2) + "px";
		this.style.marginLeft = "-1px";
	});

}