function fixCommercial(id) {
	if($(id).height() != 0)
		$(id).css({paddingTop:'10px'});
}

$(document).ready(function(){

    $('button#locate')
    .hover(function(){
        $(this).css({background:"url(/images/search/find_btn_h.gif)"});
    }, function(){
        $(this).css({background:"url(/images/search/find_btn.gif)"});
    });
    
	fixCommercial('div#fixCommercial');
	
});

