/* --------------------------------------------------
Close
-------------------------------------------------- */
$(document).ready(function(){
	/*$('#infoArea').hide();
	$('#infoArea').fadeIn(1000);*/
	$("#infoArea .btn img").toggle(
		function () {
			$(this).attr("src","common/images/info_open.gif");
			$(this).attr("alt","OPEN");
			$('#infoArea').animate({'top': '-45px'},500);
		},
		function () {
			$(this).attr("src","common/images/info_close.gif");
			$(this).attr("alt","CLOSE");
			$('#infoArea').animate({'top': '-40em'},500);
		}
	);
});




