jQuery(document).ready(function($){
  var s= '.beigeframe_box,.blueframe_box,.redframe_box,.pinkframe_box';
  
  $(s).each(function(){

    // check if any a-tags
    if($(this).find('a').size() > 0) {
      
      // set css
      $(this).css('cursor','pointer');
  
      // set hover  
      $(this).hover(function(){
        $(this).css('text-decoration','underline');
      },
      function(){
        $(this).css('text-decoration','none');
      });

      // set window.location on click
      $(this).click(function(){
        window.location = $(this).find('a').attr('href');
        window.target = $(this).find('a').attr('target');
      });      
    }    
  });
});

