$(document).ready(function() {
	$("#content > div").hide();
	$("#content > div:eq(0)").show();
	$("#tabs > a:eq(0)").css("background-color", "#d5e7ef");
});

function opentab(num) {
	$("#content > div").hide();
	$("#content > div:eq(" + (num-1) + ")").fadeIn();
	$("#tabs > a").css("background-color", "#efefef");
	$("#tabs > a:eq(" + (num-1) + ")").css("background-color", "#d5e7ef");	
}
