﻿//<a href="javascript:void(0)" id="sethome">设为主页</a>
//<a href="javascript:void(0)" id="addfav">加入收藏</a>

$(document).ready(function() {
	//400电话
	var tel400 = $('.tel400').text();
	tel400 = tel400.substring(0, 3) +'-'+ tel400.substring(3, 6) +'-'+ tel400.substring(6, 10)
	$('.tel400').text(tel400);

	//菜单
	$('.mainNav li').hover(function() {
		$(this).children('ul').show();
	},function() {
		$(this).children('ul').hide();
	});

	//加入收藏
	/*
	$('#sethome').click(function() {
		var url = window.location.href;
		url = url.substring(0, url.indexOf('/', 10) + 1);
		this.style.behavior = 'url(#default#homepage)';
		this.setHomePage(url);
		return false;
	});
	$('#addfav').click(function() {
		var url = window.location.href;
		url = url.substring(0, url.indexOf('/', 10) + 1);
		window.external.AddFavorite(url, window.document.title);
		return false;
	});*/
	
	//留言
	$('#guestbooklist a').click(function() {
		window.open(this.href, "win", "height=420,width=620,left=50,top=50,toolbar=0,menubar=0,scrollbars=1,resizable=0,location=0,status=0");
		return false;
	});
});
