$(document).ready(function(){
    var minHeight = $('#shop_content').height();
    if(minHeight < 950){
        minHeight = 950;
    }
    $('#shop_left').css({
        'min-height':minHeight+'px'
    });
    $('#shop_right').css({
        'min-height':minHeight+'px'
    });
    if($("[id*='bg_image1_placeholder_']:last").html() != null){
        $('#shop_left').css({
            'background-image':'url(dynpg/upload'+$("[id*='bg_image1_placeholder_']:last").html()+')'
        });
    }else{
        $('#shop_left').css({
            'background-image':'url(dynpg/upload/imgfile11.jpg)'
        });
    }
    if($("[id*='bg_image2_placeholder_']:last").html() != null){
        $('#shop_right').css({
            'background-image':'url(dynpg/upload'+$("[id*='bg_image2_placeholder_']:last").html()+')'
        });
    }else{
        $('#shop_right').css({
            'background-image':'url(dynpg/upload/imgfile12.jpg)'
        });
    }
});

