WebFontConfig = {
    google: { families: [ 'Josefin Slab' ] }
  };
  (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 = 'true';
    var s = document.getElementsByTagName('script')[0];
    s.parentNode.insertBefore(wf, s);
  })();
WebFont.load({ google: { families: ['Josefin Sans'] } }); 

jQuery(document).ready(function($) {
	$("#inside").hide();
	
	$(".logo").hover(function() { 
			var thumbOver = $(this).find("img").attr("src"); 
			$(this).find("a.logo").css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});
			$(this).find("span").stop().fadeTo('normal', 0 , function() {
				$(this).hide() 
			});
		} , function() { 
			$(this).find("span").stop().fadeTo('normal', 1).show();
		});
});
