$(document).ready(function() {
	
	//IE6 CORRECTIONS
	$('#footer ul li:first-child').addClass('first-child');
	
	//SITE SEARCH
	$('.application-form :input').focus(function() {
		if(this.value == this.defaultValue) {
			this.value = '';
		}
	}).blur(function() {
		if(!this.value.length) {
			this.value = this.defaultValue;
		}
	});
	
		$(".termsdescrip").hide();
			
			// Expand or collapse:
			$(".terms-expand").toggle(function() {
				$(".termsdescrip").show();
			},function(){
				$(".termsdescrip").hide();
			});
			
		
		$('.application-form .help').hide();
	
		$('.application-form input[@type=text]').focus(function(){
			$(this).siblings('.help').fadeIn('slow');
		});
		$('.application-form input[@type=text]').blur(function(){
			$(this).siblings('.help').fadeOut('slow');
		});
		
	
});


	