﻿function isIE(n){
	var ua = navigator.userAgent.toUpperCase(),isIE = ua.indexOf('MSIE')<0 ? false : true;
	if(isIE){
		if(n) return ua.indexOf('MSIE '+n+'.0')>=0 ? true : false;
		else return true;
	}else{
		return false;
	}
}
function slideUpBox(){
	var $mod=$(".mod-faq"), 
	$mhd=$mod.children(".mhd"),$mbd=$mod.children(".mbd"),$mft=$mod.children(".mft"),$close=$mod.find(".close");
	if(isIE(6)){
		$bg = $(document.createElement("iframe")).attr("frameborder","0").addClass("faq-bg").insertAfter(".mod-faq").css({opacity:0}).hide();
		$bg.show();
	}
	$mhd.hide();
	$mft.show();
	
	$mbd.slideDown();
	$close.click(function(){
		$mbd.slideUp(function(){
			$mft.hide();
			$mhd.show();
			if(isIE(6)){
				$bg.hide();
			}
		});
	});
}


