
/*--------------------------------------------------------------------------* 
 *  top icon
 *--------------------------------------------------------------------------*/

$(document).ready(function(){

	$("span",this).animate(
		{right: -64},
		{duration: 130, easing: "swing"}
	);
	
	$(".box-top-content").hover(function(){
		//mouseover
		$("span",this).animate(
			{right: 0},
			{duration: 130, easing: "swing"}
		);
	},function() {
		//mouseout
		$("span",this).animate(
			{right: -64},
			{duration: 130, easing: "swing"}
		);
	});

});

/*--------------------------------------------------------------------------* 
 *  to detail
 *--------------------------------------------------------------------------*/

/*$(document).ready(function(){

	function xDisappear(){
		$("#overlay").css(
			{height: 0}
		);
	}

});*/


