$(document).ready(function() {

  //box 1-4 has a different layout than box 5
  $('.box:eq(0), .box:eq(1), .box:eq(2), .box:eq(3)').each(function(){
    $('div.csc-header-n1', this).before($('div.csc-textpic-imagewrap', this));    
  });

  //wrap box 1-4 with more-link  
  $('.box:eq(0), .box:eq(1), .box:eq(2), .box:eq(3)').each(function(){    
    var linkTarget = $('a', this).attr('href');    
    $(this).click(function(){
      window.location = linkTarget;
    })    
    
  });
  
  

  




});
