 $(document).ready(function() {
 
if (screen.width<=480) {
  //alert("Small");
  
    $('div[id$="_col3"] .block, div[id$="_col1"] .block').each(function(){
      var $module = $(this);
      //alert("Text is this:" + $.trim($('h3',$module).text()) + "Done");
      if (!$.trim($('h3',$module).text())) {
        $module.hide();
      }
      else{
      $('div[id$="_ContentPane"]',$module).hide(); 
      //alert($('h3',$module).html());
      $('h3',$module).append('<img src="/Portals/11811/images/next.png" class="toggle">');
      
      }
    });

    $(".toggle").live('click', function() {
      //alert($(this).siblings().html());
      $(this).parent().siblings().slideToggle();

    });

      







  
}
});

