$(document).ready(function(){
	var isRunning;
	$("#menu a").hover(function(e) {
		var id =  $(this).attr("rel");
		if($("#submenu"+id).length!=0) {
			if(!isRunning){
				isRunning = true;
				$(".submenu").hide();
				$("#submenu"+id).fadeIn("slow", function(){ isRunning = false; });
			}
		}
		else {
			$(".submenu").hide();
		}
    });
	
	 $('#footerform .name').focus(function() { if(this.value=='Вашето име') { this.value = ''; } });
	 $('#footerform .name').blur(function() { if(this.value=='') { this.value = 'Вашето име'; } });
	 $('#footerform .phone').focus(function() { if(this.value=='Телефон') { this.value = ''; } });
	 $('#footerform .phone').blur(function() { if(this.value=='') { this.value = 'Телефон'; } });
	 $('#footerform .mail').focus(function() { if(this.value=='E-mail') { this.value = ''; } });
	 $('#footerform .mail').blur(function() { if(this.value=='') { this.value = 'E-mail'; } });
	 $('#footerform .message').focus(function() { if(this.value=='Съобщение') { this.value = ''; } });
	 $('#footerform .message').blur(function() { if(this.value=='') { this.value = 'Съобщение'; } });
	
});