/***Dave Witassek start to web GmbH 2009***/
/******************************************/
$(document).ready(function(){
    var str = $("#nextbutton .nextmenu_inner a").text();
    $("#nextbutton .nextmenu_inner a").hover(
    function(){
          $(this).text("Lesen Sie mehr");
    },
    function(){
          $(this).text(str);
    });
    
/***Patientenberichte***/
$(".pabe_content").hide();
/*$("h3.pabe_titel").before("<img class='plus' alt='aufklappen' src='fileadmin/templates/images/plus.gif'/>");*/
$(".pabe_titel").toggle(
    function() {
       $(this).parent().children(".pabe_content").show();
       $(this).children(".plus").remove();
       $(this).parent().children("h3.pabe_titel").prepend("<img class='minus' alt='einklappen' src='fileadmin/templates/images/minus.gif'/>");

       },
    function() {
       $(this).parent().children(".pabe_content").hide();
       $(this).children(".minus").remove();
       $(this).parent().children("h3.pabe_titel").prepend("<img class='plus' alt='aufklappen' src='fileadmin/templates/images/plus.gif'/>");

       }
    );
/*$(".news_latest_patienten .news_latest_item").after("<a href='/de/augen-laser/berichte-von-patienten/patientenberichte-2009.html'>&raquo;&raquo;&nbsp;Lesen Sie die Erfahrungsberichte unserer zufriedenen Patienten</a>");*/

/***Eignungsbogen***/
$("#powermaildiv_uid82, #powermaildiv_uid83, #powermaildiv_uid84, #powermaildiv_uid85, #powermaildiv_uid86, #powermaildiv_uid87, #powermaildiv_uid88, #powermaildiv_uid90").wrapAll("<div class='eignungsbogen_1'></div>");
$("#powermaildiv_uid89, #powermaildiv_uid91, #powermaildiv_uid92, #powermaildiv_uid93, #powermaildiv_uid94, #powermaildiv_uid95, #powermaildiv_uid96, #powermaildiv_uid97, #powermaildiv_uid98, #powermaildiv_uid99, #powermaildiv_uid100, #powermaildiv_uid101, #powermaildiv_uid102, #powermaildiv_uid103, #powermaildiv_uid104, #powermaildiv_uid105, #powermaildiv_uid106, #powermaildiv_uid107").wrapAll("<div class='eignungsbogen_2'></div>");

/*$(".kunden2006").append("<a href='/de/augen-laser/berichte-von-patienten/patientenberichte-2009.html'>&nbsp;</a>");*/
/*$(".facebook").append("<a href='http://www.facebook.com/home.php?#/group.php?gid=53792420842&ref=ts' target='_blank'>&nbsp;</a>");*/

$(".contenttable tr:even").css("background","#c8c8c8");
$(".contenttable td, .contenttable th").css("padding","4px");
    
});