$(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');
/* Blur entfernen */
$(function(){ $('a').attr('onfocus','if(this.blur)this.blur()');});
/* Blur entfernen bei IE*/
$('a').click(function() {this.blur();});



/*  ende Code */
});