// JavaScript Document

$(document).ready(function(){

	$(".navigation a").hover(function() {
		$(this).next("em").animate({opacity: "show"}, "fast");
	}, function() {
		$(this).next("em").animate({opacity: "hide"}, "fast");
	});
});

$(document).ready(function(){
				//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'130px'},{queue:false,duration:500});
	}, function() {
		$(".cover", this).stop().animate({top:'210px'},{queue:false,duration:500});
	});			
});