 $('.imageLink').each(function(){
        if($(this).children('img').length){
            $(this).children('img').css({display:'none'});
            $(this).children('img:eq(0)').css({display:'block'});
        }
        else {
            $(this).css('display','none');
        }
            
        
    });
    
    
    $(document).ready(function(){
        $('.newsLink').click(function(e){
          e.preventDefault()          
          $('.topArea li a.news').trigger('click')
        })
      
        $('.tourLink').click(function(e){
          e.preventDefault()          
          $('.topArea li a.tour').trigger('click')
        })
        
    })
