/* ++++++++++++++++++++++++++++++++++++ Mission Statement +++
+
+ Update:2010-02-09
+
+ http://www.ms-inc.co.jp
+ EditiorID:REN
+
+ + use library:jquery-1.4.1.js(mother javascript)
+ + dd_belatedPNG_0.0.8a-min.js(png for IE6)
+ + jquery.easing.1.3.js
+
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */



// escape conflict
jQuery(function($){


//tooltip for 60px
$(function(){
		$(".toolTip").hover(function(){
		$(this).stop().children().children(".txtQ").animate({height: "show",width: "show"}, 100, "linear");
		}, function(){
		$(this).stop().children().children(".txtQ").animate({height: "hide",width: "hide"}, 100, "linear");
	});
});


// escape conflict close
});
