$.noConflict();
jQuery(document).ready(function($) {

    // SearchInput-Value füllen:
    $('#ctrl_1').attr('value', 'suchen');

    // SearchInput-Value leeren wenn man drauf klickt:
    $('#ctrl_1').focus(function () {
      	$(this).attr('value', '')
      });

    // Searchbutton-Value entfernen:
    $('#ctrl_1_submit, #ctrl_submit_8').attr('value', '');

    /*
    // Runde Ecken:
    $("#header .hauptnavigation ul.level_1 li").corner("8px top");
    $("#header .hauptnavigation .dropShadow").corner("8px top");
    $("#header .subnavigation").corner("tl tr 8px").css('margin', '0 10px 0 10px');


    // Runde Ecken:
    $("#container #main .whitebox, #container #main .whitebox_links, #container #right .whitebox").corner("10px #ffffff");
    */

    /*Archivmenü umbrechen */
    for ( var i = 0 ; i<= 17 ; i++ ){
      if (i > 6){
		$(".mod_customnav ul > li:eq("+i+")").addClass('floatLiMitte');
      }
      if (i > 12){
		$(".mod_customnav ul > li:eq("+i+")").addClass('floatLiRechts');
                $(".mod_customnav ul > li:eq("+i+")").removeClass('floatLiMitte');
      }
    };
});

