// JavaScript Document
$(function() {
	$('.box a span.slide-title').css({ opacity : '0.0'});
			   
	$('.box a').mouseover(function() {
		$(this).find('img.color').stop().animate({ opacity:0.0 }, 300).parent('a').find('span.slide-title').stop().animate({opacity:1.0, "marginTop":"45px"},300);
	});
									 
	$('.box a').mouseout(function() {
		$(this).find('img.color').stop().animate({ opacity:1.0 }, 300).parent('a').find('span.slide-title').stop().animate({opacity:0.0, "marginTop":"50px"},300);
	});
					
});