/*!
 * JavaScript File
 * slider.js ver 1.0
 * http://www.kosei-do.com/
 *
 * Copyright 2010, kosei-do
 *
 * Date: Sun Sep 26 09:45:20 2010
 */
$(document).ready(function(){
	//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'60px'},{queue:false,duration:240});
	}, function() {
		$(".cover", this).stop().animate({top:'160px'},{queue:false,duration:240});
	});
});
