$(document).ready(function()
{
	// Sliding Boxes and Captions with JQuery March 2009 By Sam Dunn
	// www.buildinternet.com / www.onemightyroar.com
	$('.boxgrid').hover(function()
	{
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
	},
	function()
	{
		$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:160});
	});
	
	$(".imageHide a .slim").slimbox();
	
	$(".cover,.nav").click(function()
	{
		var link = ($(this).attr("class")).match(/[0-9]+/);
		$(".imageHide[id!=image-"+link+"]").slideUp("slow");
		$("#image-"+link).slideToggle("slow");
	});
});