$(document).ready(function(){

	$('.entry').mouseenter(function(){
		$(this).find('div.overlay').fadeIn(300, function() {
		       // Animation complete
		});
		
	});
	
	$('.entry').mouseleave(function(){
		
		
		$(this).find('div.overlay').fadeOut(200,function (){
			//Animation complete
		});
				
	});

	$('#slider').nivoSlider({
		effect:'fade',
		slices:15,
		animSpeed:500,
		pauseTime:4000,
		directionNav:true, //Next & Prev
		directionNavHide:true, //Only show on hover
		controlNav:true, //1,2,3...
		pauseOnHover:true, //Stop animation while hovering
		captionOpacity:0.7,
		beforeChange: function(){},
		afterChange: function(){}
	});
	
	$('#header .nav a').tipTip({
		maxWidth: "auto",
		edgeOffset: 10,
		defaultPosition: 'bottom'
	});
	
	$('#related_posts a').tipTip({
		maxWidth: "auto",
		edgeOffset: 10,
		defaultPosition: 'bottom'
	});

	$(document).pngFix(); 
 
 	$("#sidebar").css("min-height",$("#main").height());
});

