// JavaScript Document
function initFixDesign()
{
    setTimeout( function(){ $( '.preload' ).fadeOut( 900 ); }, 200 );
    
}//function initFixDesign()          

function moveBlockToTopMobile()
{
    if ( !isMobile() ) return;
    
    // Move center block to top
    $( '#main' ).css(
    {
        'top' : '5%',
        'margin-top' : '0'
    } );
    
}//function moveBlockToTopMobile()
