$(document).ready(function(){
//    $('dt').click(function(){$(this).next('dd').slideToggle('fast').siblings('dd:visible').slideUp('fast');});

		$('dl').each(function(i,n){
			if($(n).children('dt').size() == 0){
				$(this).prev('h1').remove();
			}
		});
    if($.browser.safari){
       $('div.container').css('background-color','rgb(34,28,20)');
    }
	else if($.browser.msie){
		$('div.container').css('background-color','rgb(38,35,26)');
	}
});
