$(document).ready(function(){

	$(function(){ $('#blog-grid').equalHeights(); });

	$('#vid-player ul li a').click(function(e){
		e.preventDefault();
		
		$('#vid-player ul li').removeClass('current');
		
		$(this).closest('li').addClass('current');
	});
	
	$('#tick li').hover(function(){
		$(this).animate({
			height: "181px"
		}, 500);
	},function(){
		$(this).animate({
			height: "24px"
		}, 500);
	});
	
	$('#the-kit li').hover(function(){
		$(this).find('img').fadeIn();
	},function(){
		$(this).find('img').fadeOut();
	});
});
