$(document).ready(
	function() {
		
		var isIE6And7 = ($.browser.msie && parseInt($.browser.version.substr(0,1)) < 8);
		
		$("#cnt-how-to-book .help-box .txt-box").hover(
				function(){
					var oTarget = $(this);
					if (isIE6And7){
						oTarget.parent(".section").css("zIndex", 10);
					}
					oTarget.find("div").fadeIn(250);
					
				},
				function(){
					var oTarget = $(this);
					oTarget.find("div").fadeOut(200, function(){
						if (isIE6And7){
							oTarget.parent(".section").css("zIndex", 0);
						}
					});
				}
		);
	}
);

