$(document).ready(function() {

	// -- Contact Form field blur
	$('.field_blur').click(function() {
		if (this.value == this.defaultValue) {
			this.value = '';
		}
	});
	$('.field_blur').blur(function() {
		if (this.value == '') {
			this.value = this.defaultValue;
		}
	});
	
	
	// -- Navigation
	// Older browser such as IE don't recognize li:hover
	$('#navigation li').hover(function() {
			$('ul', this).css('display', 'block');
		}, function() {
			$('ul', this).css('display', 'none');
		}
	);
	
	// -- Table Odd/Even
	$('.table1 tr:even').addClass('even');	
	
});
