$(document).ready(function() {
	
	$('.change').focus(function() {
	if (this.value == this.defaultValue) {
	this.value = ''; }});
	$('.change').blur(function() {
	if (this.value == '') {
	this.value = this.defaultValue; }});

	$(".prvi_nivo").hover(function() {
    $(this).addClass("hover");
	}, 
	  function () {
		$(this).removeClass("hover");
	});
	
	
	
	$("#nav-list li").hover(function() {
    $(this).addClass("hover");
	}, 
	  function () {
		$(this).removeClass("hover");
	});
	
});

$(document).ready(function () {	
	
	$('#nav-list li').hover(
		function () {
			//show its submenu
			$('ul', this).slideDown(140);

		}, 
		function () {
			//hide its submenu
			$('ul', this).slideUp(140);			
		}
	);
	
});