$(document).ready(function() {
	
	$('.thumb').hover(function(){
		var description_size;

		if($(".cover", this).hasClass("oneline")) {
			description_size = "48";
		} else if($(".cover", this).hasClass("twoline")) {
			description_size = "33";
		} else if($(".cover", this).hasClass("threeline")) {
			description_size = "18";		
		} else if($(".cover", this).hasClass("fourline")) {
			description_size = "0";
		}	
		$(".cover", this).stop().animate({top:description_size+'px'},{queue:false,duration:500, easing:"circEaseOut"});
	}, function() {
		$(".cover", this).stop().animate({top:'90px'},{queue:false,duration:160, easing:"backEaseOut"});
	});
	
	/*$('#paginate-blog').click(function(){
		var total  = $("#content > .entry").size();
		var offset = total + 10;
		$('#content').load('http://www.bridawson.com/includes/pages/blog.php?amount='+offset);
		return false;
	});*/
});
