// page fadein
$(document).ready(function()
{
  $('#body').delay(1000).fadeIn(1000);
})

// Google font loading
WebFontConfig = {
  google: { families: [ 'Cantarell' ] }
};

(function() {
  var wf = document.createElement('script');
  wf.src = ('https:' == document.location.protocol ? 'https' : 'http')
  + '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  wf.type = 'text/javascript';
//  wf.async = 'false';
  var s = document.getElementsByTagName('script')[0];
  s.parentNode.insertBefore(wf, s);
})();


/*$(function() {
    $("img.logos")
        .mouseover(function() { 
            var src = $(this).attr("src").match(/[^\.]+/) + "2.png";
            $(this).attr("src", src);
        })
        .mouseout(function() {
            var src = $(this).attr("src").replace("2", "");
            $(this).attr("src", src);
        });
});*/

