// JavaScript Document


$(document).ready(function(){
	$('.contactForm input').each(function() {
		var default_value = this.value;
		$(this).focus(function() {
			if(this.value == default_value) {
				this.value = '';
			}
		});
		$(this).blur(function() {
			if(this.value == '') {
				this.value = default_value;
			}
		});
	});
	
	$('.contactForm textarea').each(function() {
		var default_val = this.value;
		$(this).focus(function() {
			if(this.value == default_val) {
				this.value = '';
			}
		});
		$(this).blur(function() {
			if(this.value == '') {
				this.value = default_val;
			}
		});
	});

	
	$('.mainMenu > li').hover(function(){
		$(this).children("ul").show();
	}, function(){
		$(this).children("ul").hide();
	});
});

