document.createElement('header');
document.createElement('footer');
document.createElement('nav');

$(window).load(function() {
    $('#Wrraper').fadeIn( 650 );  
    $('#Slider').nivoSlider( {effect : 'fade', pauseTime:3500} );
});

$(document).ready( function(){
    $("#Menu li a").mouseover( function(){
        $(this).animate({
            marginRight : 10,
            opacity : 1.0
        }, 500);
    });
    $("#Menu li a").mouseout( function(){
        $(this).animate({
            marginRight : 0,
            opacity : 0.85
        }, 500);
    });    
    $("#"+$("#Action").val()).addClass( 'Current' );
    
    if( $("#Action").val() == 'index' ){
        $("#Logo").css( 'opacity', 0 );
        $("#Logo").animate( { marginRight : "+=10px", opacity : 1.0 }, 1000 );
    }
});

