/** jQuery scripts **/
$(document).ready(function() {
    
    $('#archivShow').click(function() {
        $('#archiveNewsHP').show('slow');
        return false;
    });
    
    $('.vanoceImg').mouseover(function() {
        $('.vanoce').show();
    });
    
    $('.vanoceImg').mouseout(function() {
        $('.vanoce').hide();
    });
    
});
