бек95,
<input type=text id=bg_col />
<input type=text id=height />
<div class="top_menu"></div>
<script>
function addSpisok(){
var bg_col=$('#bg_col').val();
var height=$('#height').val();
$('.top_menu').css(
{
'background-color':'#'+bg_col,
'height':height //последний элемент без запятой
}
);
}
</script>