$(document).ready(
	function(){
		// Hover animations
		$("#logo_hover").css("opacity","0");
		$("#logo_hover").hover(function(){
			$(this).stop().animate({
				opacity: 1
			}, "750");
		},
		function(){
			$(this).stop().animate({
				opacity: 0
			}, "750");
		});
		$("#html5_hover").css("opacity","0");
		$("#html5_hover").hover(function(){
			$(this).stop().animate({
				opacity: 1
			}, "750");
		},
		function(){
			$(this).stop().animate({
				opacity: 0
			}, "750");
		});
		
		// PNG fixes
		$('.tumblr_post').each(
		  function(){
		    $(this).addClass('png_bg');
		  }
		);
		$('.tumblr_quote').each(
		  function(){
		    $(this).addClass('png_bg');
		  }
		);
	}
);

$(function(){
	$(".tipTip").tipTip();
});
