  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-6986203-5']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();


  (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);
  })();

jQuery(document).ready(function($){
	
	$("#homer").click(function(e){
		e.preventDefault();
		if($(".post-menu:hidden").length) {
				$(".post-menu").animate({
				  height: 'show'
				  }, 700, 'easeInOutBack' );
		}
	});
	
	// if click on the menu
	$(".post-menu").mouseup(function() {
		return false
	});
	
	// if click on everything else or scroll
	$(document).bind('mouseup scroll', function() {
		if($(".post-menu").length) {
			$(".post-menu").animate({
			  height: 'hide'
			  }, 700, 'easeInOutBack');
		}
	});
	
	$('#lastfm-wrap').lastfm('wfxyz','lovedtracks','fa156a27f1c5a11cbe0b3db421c095e1', {
		imagesize: 'large',
		limit: 15
	});
	
	WebFontConfig = {
	    google: { families: [ 'Raleway:100' ] }
	};
	
});
