
$(document).ready(function(){
    $('div#banners div').each(function(){
	if ($(this).children().length == 1) {
	    $(this).hide();
	}
    });
    //$('div#banners').reorder();
});