$(function() {
	$("#tabs").tabs("div.description", {
		event:'mouseover'
	});

	$('#tab-area').mouseleave(function() {
		$('#t-main').mouseover();
	});

	$("#tabs li").click(function() {
		window.location = $(this).attr('rel');
	});
});
