// JavaScript Document
$(document).ready(function() {

	$('#template-middle #content-boxes div.box').hover(function() { // Hover effect

		$(this).find("div").stop().animate({top: 58, height: 91}, "fast");

		$(this).addClass('pretty-hover');

	}, function () {

		$(this).find("div").stop().animate({top: 120, height: 28}, "fast");

	}).each(function () { // Make whole thing a 'link'

		$(this).css({cursor: "pointer"}).click(function () {

			document.location.href = $(this).find("a").attr("href");

		});

	});

});