$(document).ready(function() {
	$("#infoTabs li").hover(function() {
		if(!$(this).hasClass("active")) $(this).addClass("hover");
	}, function() {
		$(this).removeClass("hover");
	}).click(function() {
		$(this).addClass("active").removeClass("hover").siblings().removeClass("active");
		$($(this).attr("rel")).addClass("active").siblings().removeClass("active");
	});
});

