$(document).ready(function(){

  /*jQuery.ifixpng('../img/px.gif');
  jQuery('img, .menu, .header, h1').ifixpng();*/
  
  $(".query").tweet({
      avatar_size: 32,
      count: 5,
      query: "clubmate",
      loading_text: "<span class='loading'>loading</span>"
    });
  
  $("div .menu a").prepend('<span class="hover"></span>');
  $("div .menu a .hover").fadeIn(500).animate({
			'opacity': 0
			}, 1000, 'easeOutBounce');
  
  $('div .menu a').hover(function() {
		$('.hover', this).stop().animate({
			'opacity': 1
			}, 700, 'easeOutBounce')
	},function() {
		$('.hover', this).stop().animate({
			'opacity': 0
			}, 2000, 'easeOutBounce')
	});
  
});
