$(function() {
	//add jquery functions here
	
	$('#tabs-container > ul').tabs({ fx: { opacity: 'toggle' } });
	$(".table-list tr:even").addClass('odd');
	
	$('.toggle').click(function() {
		var div = $(this).attr('title');
		$(this).toggleClass("hide");
		$('#'+div).toggle(400);
	    return false;
	});
	
	var keywordsText = $('.keywords').attr("title");
	$('.keywords').example(keywordsText);
	
});

function fieldSet(obj,str) {
	if(obj.value == str) {
		obj.value = '';
	}
}

function fieldReset(obj,str) {
	if(obj.value == '') {
		obj.value = str;
	}
}