$j(document).ready(function() {
		  $j("#tab0").css('backgroundColor', '#eae8e0');
		  for(i = 1; i <= 4; i++) {
				txtid = 'txt' + i;
				$j("#" + txtid).css('display', 'none');
		  }
	 });

function showContent(nr) {
	 for(i = 0; i <= 4; i++) {
		  txtid = 'txt' + i;
		  tabid = 'tab' + i;
		  if ($j("#" + txtid) != null) {
				if (nr == i) {
					 $j("#" + txtid).css('display', '');
					 $j("#" + tabid).css('backgroundColor', '#eae8e0');
				} else {
					 $j("#" + txtid).css('display', 'none');
					 $j("#" + tabid).css('backgroundColor', '#cdc5bb');
				}
		  }
	 }
}
