function fixDottedLinksOutline(domChunk) { $(domChunk).focus(function(){$(this).blur();});}
$(document).ready(function(){
	
	$('INPUT[onempty]').focus(
		function() {
			var obj = $(this).get(0);
			if(obj.value == $(this).attr('onempty')) { obj.value = ''; }
		}
	)

	$('INPUT[onempty]').blur(
		function() {
			var obj = $(this).get(0);
			if(obj.value == '') { obj.value = $(this).attr('onempty'); }
		}
	)
		
});



//----------------------
// FAQ
//----------------------
function SwitchFAQ(iQuestion) {
	$('.Question a').removeClass('selected');
	$('.Answer').each(function(){
		if(this!=$('#A' + iQuestion).get(0)) { $(this).hide('fast'); }					   
	});
	$('#Q' + iQuestion + ' a').addClass('selected');
	$('#A' + iQuestion).show('fast');
}