// JavaScript Document
function addFavorite()
{
  window.external.addFavorite("http://www.stonewindow.com","厦门欣思华进出口有限公司");
  return false;
}

function msgcheck(){
	if(document.msgform.subjet.value==""){
		alert("咨询标题还没填写");
		document.msgform.subjet.focus();
		return false;
	}
	if(document.msgform.youname.value==""){
		alert("请填写好您的名字");
		document.msgform.youname.focus();
		return false;
	}
	if(document.msgform.email.value==""){
		alert("电子邮箱还未填写");
		document.msgform.email.focus();
		return false;
	}
	if(document.msgform.qq.value==""){
		alert("QQ号码还未填写");
		document.msgform.qq.focus();
		return false;
	}
}


$(function(){
	$('.bom li.dow').hover(function(){
		$(this).find('.nav-sub').show();
		$(this).addClass('current');
		},function(){
		$(this).find('.nav-sub').hide();
		$(this).removeClass('current');
	});
});
