/*
function addBackgroundImage(img,elem,height,width,bottomMargin){
if(!width)width='100%';
if(!bottomMargin)bottomMargin='10px';
$jq(document).ready(function(){
 e = $jq('#'+elem).css({backgroundImage:'url(/images/css-images/'+img+')',height:height,width:width,marginBottom:bottomMargin,backgroundRepeat:'repeat'});
 Nifty('div#'+elem,'fixed-height');
});
}
*/