



jQuery(document).ready(function(){

    jQuery('div.pdf_wrap').each(function(){
        var span = jQuery(this).find('span.pdf_test');
        if(span.html().length <= 0){
            jQuery(this).css('display','none');
        }
    });
    
    jQuery('div.website_wrap').each(function(){
        var span = jQuery(this).find('span.website_test');
        if(span.html().length <= 0){
            jQuery(this).css('display','none');
        }
    });


  
  
});
