﻿function $E(id) {
	return document.getElementById(id);
}

function resize() {
	if (this.width > 500) {
		this.width = 500;
		this.alt = '点击查看大图';
		$(this).css({cursor: 'hand'}).wrap('<p style="text-align:center;"></p>').click(function() {
			window.open(this.src);
		});
	}
}

$(function() {
	$('#tabMenu>h2>a').click(function() {
		$('#tabMenu h2').removeClass('on');
		$('#tabMenu .title-list-3').hide();
		$(this.parentNode).toggleClass('on').next().toggle();
		return false;
	});
	
});
