$(document).ready(function() {
	
	$('.change').focus(function() {
	if (this.value == this.defaultValue) {
	this.value = ''; }});
	$('.change').blur(function() {
	if (this.value == '') {
	this.value = this.defaultValue; }});

	$("#nav-list li").hover(function() {
    $(this).addClass("hover");
	}, 
	  function () {
		$(this).removeClass("hover");
	});
	
	
	//$("#nav-list li").hover(function() {
//    $("#nav-list li ul li a").addClass("sub");
//	}, 
//	  function () {
//		$("#nav-list li ul li a").removeClass("sub");
//	});
//
});



/*
 * Tooltip script 
 * powered by jQuery (http://www.jquery.com)
 * 
 * written by Alen Grakalic (http://cssglobe.com)
 * 
 * for more info visit http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery
 *
 */
 


