﻿$(document).ready(function() {

    // Navigation rollover behaviour
    $.each($('#nav'), function() {
        var navigation = $(this);

        $('#nav .over span').remove(); // Removes the unover state from the current tab

        navigation.find('a').hover(function() {
            $(this).stop().next().fadeOut(200);
        }, function() {
            $(this).stop().next().fadeIn(500);
        });
    });

    $('#gallery').fadeIn('slow'); // Splash page carousel appears

    $('.contact p, .links p').fadeIn('normal');

});