function clearMe(formfield){
if (formfield.defaultValue==formfield.value)
         formfield.value = ""
}

$(document).ready( function(){
							
	var tabbedBtns = $('ul.tabbedNav li');
	var tabbedContent = $('.section');
	
	$(tabbedBtns).click( function(){
		$(tabbedBtns).removeClass('selected');
		$(this).addClass('selected');
		$('.section:visible').addClass("hide");
		
		var currentItem = $(tabbedBtns).index($(this));
		$(tabbedContent[currentItem]).removeClass("hide");
	});
});
