$(window).resize(function(){
    $('#title').css({
        position:'absolute',
        left: ($(window).width() - $('#title').outerWidth())/2,
        top: ($(window).height() - $('#title').outerHeight())/2
    });
})
$(document).ready(function(){
    $('#contact').prepend('<img src="mail.png" alt="Contact Me"><a' + ' href="mail' + 'to:' + 'contact' + '@' + 'mindaugas' + 'vitkus.com">' + 'contact' + '@mindaugas' + 'vitkus.com' + '</a><br/>');
    var colors = new Array ( '#000000', '#065d8d', '#7eaf29', '#504f58', '#1b93a5', '#e52d1e', '#566270', '#2d8fbd', '#ec671d', '#359cd7' );
    $( 'a[rel=external]' ).attr( 'target', '_blank' );
    $('body').css({
        background: colors [ Math.floor(Math.random() * colors.length) ],
    });
    $(window).resize();
    $('#title').fadeIn(3000);
});
