$(document).ready(function(){

$("li#moreless").click(function(){
		$("li.bottom").toggle(200);
		$("li#moreless span").toggle();
	});
	
$("li#brmoreless").click(function(){
		if( $("div#div-br").css('height') == '90px' )
		{
			$("div#div-br").css('height', 'auto');
		}
		else
		{
			$("div#div-br").css('height', '90px');
		}
		
		$("li#brmoreless span").toggle();
	});	

});



