$(document).ready(function(){

	// set round border images in dropdown navigation
	// site_dirname wird in header.tmpl als globale variable gesetzt
	$("div.menu ul ul li:last-child").each(function(){
		$(this).after('<img src="/_img/'+site_dirname+'/mainnav_bottom.gif"/>');
		});
	$("div.menu ul ul li:first-child").each(function(){
		$(this).before('<img src="/_img/'+site_dirname+'/mainnav_top.gif"/>');
		});	
	
	
	// handle search inputfield default text
	
	$("input#searchfield").focus(function () {
    	var text = $(this).val();
    	if(text == 'Suchbegriff'){
			$(this).val("");
		}
    });
    $("input#searchfield").blur(function () {
		var text = $(this).val();
		if(text == ''){
			$(this).val("Suchbegriff");
		}
    });
	
});

