$(function(){

	$(document).ready(function() {

		if ($('body#faqs').length > 0) {
			$('.faq-key').click(function(){
				selected = $(this).attr('id');
				$('#faqs #faq-answer .faq-value').hide();
				$('.' + selected).show();
			});
		}

		// Form Default Text
		$('.default-text').focus(function() {
			$(this).val(($(this).val() == $(this)[0].title) ? '' : $(this).val());
		});

		$('.default-text').blur(function() {
			$(this).val(($(this).val() == '') ? $(this)[0].title : $(this).val());
		});
		
		$("#id").blur();

	});

});
