$(document).ready(function() {
         /* Code */
         /* Popup Fenster */
         $('.popgbook').click(function() {
             open(this.href, 'f', 'height=400, width=300, resizable=no, scrollbar=no');
             return false;
         });
         $('.codeup').click(function() {
             open(this.href, 'f', 'height=250, width=400, resizable=no, scrollbar=no');
             return false;
         });
         /* Zebratabelle */
         $('.rahmen tr:nth-child(even)').addClass('gerade');
         /* Tooltip */
         $('.set1 *').tooltip();
         /* Blur entfernen */
         $(function(){
                 $('a').attr('onfocus','if(this.blur)this.blur()');
         });

         $('a').click(function() {this.blur();});
         /* Ajax Kategorie */
         $("#maincat").change(function(){
                 var id_hauptkategorie=$(this).children('option:selected').val();
                 $("#subcat").load("katbox.php",{value: id_hauptkategorie});
         });
/*  ende Code */
});
