﻿$(document).ready(function () {

    //load
    $('#social2').show();
    positionSocial();

    //resize
    $(window).resize(function () {
        positionSocial();
    });

    //hover
    $('#social').hover(
         function () {
             $(this).fadeTo(100, 1);
         },
         function () {
             $(this).fadeTo(250, 0.20);
         }
    );

    function positionSocial() {
        var $win = $(window).width();
        var $wid = $('#social').css('width');
        if ($win < 1100 || $wid == 0) {
            $('#social').hide();
        }
        else {
            $('#social').show();
            var offset = $('#header').offset();
            $('#social').offset({ top: 20, left: offset.left - 70 });
            $('#social').fadeTo(0, 0.20);
        }
    }

});
