$(document).ready(function(){
		$('input[type=text]').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;
				}
			});
		});

		$('input[type=password]').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;
				}
			});
		});

		$('textarea').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;
				}
			});
		});
		$(".Menu ul.children").wrap('<div class="subMenu"></div>');
		
			/*
		$('.Menu').children('ul').children('li').each(function() {
			
		});
		*/
		$('.Menu').children('ul').children('li').last().addClass('last');
		$('.Menu').children('ul').children('li').not('.last').append('&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;');

		$('.Menu li').hover(function() {									 
			$(this).addClass('over');
			return false;
		},
		function() {
			$(this).removeClass('over');
		});

});


$(window).load(function () {

});
