/*- Mouseover Image fade
----------------------------------------------------------------------*/

$(document).ready(function(){
$("#projects img.a, img.c, img.e").hover(
function() {
$(this).stop().animate({"opacity": "0"});
},
function() {
$(this).stop().animate({"opacity": "1"});
});
 
});


/*- Slide Captions
----------------------------------------------------------------------*/

		$(document).ready(function(){
			//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
			//Full Caption Sliding (Hidden to Visible)
			$('.boxgrid.captionfull').hover(function(){
				$(".cover", this).stop().animate({top:'155px'},{queue:false,duration:200});
			}, function() {
				$(".cover", this).stop().animate({top:'200px'},{queue:false,duration:200});
			});
		});
