$(document).ready(function(){
	$("#head-nav ul li").hover(function() {
		$(this).addClass("over");
		$(this).children("ul").bgiframe();
	}, function() {
		$(this).removeClass("over"); 
	});		
	
	$(".autotekst").focus(function() {
		if ($(this).val() == $(this).attr('title')) {
			$(this).val('');
		}
	});
	$(".autotekst").blur(function() {
		if ($(this).val() == '') {
			$(this).val($(this).attr('title'));
		}
	});		
});
