$(document).ready(function () {
	$("#tabs li#record").attr("class","selected");
	hideallcontent()
	$("#photomenu #recordcontent").show();
});

function changetabs(tab) {
	unselectalltabs();
	$(tab).attr("class","selected");
	hideallcontent();
	
	if (tab.id == 'record') {
		$("#photomenu #recordcontent").fadeIn();
	} else if  (tab.id == 'promote') {
		$("#photomenu #promotecontent").fadeIn();
	} else if  (tab.id == 'score') {
		$("#photomenu #scorecontent").fadeIn();
	}
	
}

function unselectalltabs() {
	$("#tabs > li").attr("class","");
}
function hideallcontent() {
	$("#photomenu .item").hide();
}
