$(document).ready(function(){ 
						   
	var default_values = new Array();
	
	$("input.default_value").focus(function() {
		if (!default_values[this.id]) {
			default_values[this.id] = this.value;
		}
		
		if (this.value == default_values[this.id]) {
			this.value = '';
			$(this).css({'font-style' : 'normal', 'color' : '#757575'});
		}
		
		$(this).blur(function() {
			if (this.value == '') {
				if(this.id == 'search') {
					$(this).css({'font-style' : 'italic', 'color' : '#BCBCBC'});
				} else {
					$(this).css({'font-style' : 'italic'});
				}
				this.value = default_values[this.id];
			}
		});
	});
	
	$('ul.side_nav li ul').hide();
	$('ul.side_nav li.current_page_item ul, ul.side_nav li.current_page_parent ul').show();
	
	$('ul.foot_nav li:first').addClass('first');
	
	$('form.callback').submit(function() {
		if($('#name').val() == 'Your name'){
			alert('Please enter a name');
			return false;
		}
		
		if($('#number').val() == 'Telephone Number'){
			alert('Please enter a number');
			return false;
		}					  
	});
	
    
}); 
