function toggleWeight(element){
	if($(element).style.fontWeight == 'normal'){
		$(element).style.fontWeight = 'bold';
	}else{
		$(element).style.fontWeight = 'normal';
	}
}