$(document).ready(function() {
	$("#content > div").hide();
	$("#content > div:eq(0)").show();
	$("#tabs > a:eq(0)").css("background", "url(img/aba.png) top left no-repeat");
	//$("#tabs > a:eq(0)").css("z-index", "1000");
});
 
function opentab(num) {
	$("#content > div").hide();
	$("#content > div:eq(" + (num-1) + ")").fadeIn();
	$("#tabs > a").css("background", "url(img/aba-no.png) top left no-repeat");
	//$("#tabs > a").css("z-index", "100");
	$("#tabs > a:eq(" + (num-1) + ")").css("background", "url(img/aba.png) top left no-repeat");
	//$("#tabs > a:eq(" + (num-1) + ")").css("z-index", "1000");	
}
