Думаю, этот пример может вам помочь!
Js:
$j(document).ready(function(){
var inside_height = $(".inside").height() - 500;
$(".artists").height(inside_height).css({backgroundColor:"green"});
});
CSS:
.inside{
width:100px;
Height:600px;
background:#000;
float:left;
}
.artists{
width:100px;
float:left;
}
HTML:
<div class="inside"></div>
<div class="artists"></div>