$(function(){
	jQuery('a[class=daohanglink]').hover(function () {
		jQuery('div[class=daohang_menu]').hide();
		var o = jQuery(this).siblings('div[class=daohang_menu]');
		if(o.width() < 80)o.width(80);
		o.show().css('margin-left',(o.width() - jQuery(this).width())/-2);
	},
	function () {});

	jQuery('div[class=daohang_menu]').hover(
		function () {},
		function () {
			jQuery(this).hide();
		}
	);
});


$(function(){
	var obj_bg = jQuery('div.about_bg');
	var obj_kuang = jQuery('div.about_kuang');
	if(obj_bg.length>0 && obj_kuang.length>0)
	{
		obj_kuang.offset({
			left:(obj_bg.width()-obj_kuang.width())/2 + obj_bg.offset().left,
			top:(obj_bg.height()-obj_kuang.height())/2 + obj_bg.offset().top + 80
		});
	}
});


