function blink(a,b,c,d){

  $('#'+a).addClass('bigred');
  $('#'+b).addClass('bigred');
  $('#'+c).addClass('bigred');
  $('#'+d).addClass('bigred');
}
function unblink(a,b,c,d){

  $('#'+a).removeClass('bigred');
  $('#'+b).removeClass('bigred');
  $('#'+c).removeClass('bigred');
  $('#'+d).removeClass('bigred');
}

$(document).ready(function(){

  $('.problem').hover(function(){
    $(this).addClass('red');
  },
  function(){
    $(this).removeClass('red');
  }
  );


  $(function() {
      $('#gallery a').lightBox();
  });



});
