      $(function(){
        /*FIX PNGS*/
        if($.browser.msie) {
            $.browser.msie6 = $.browser.msie && /MSIE 6\.0/i.test(window.navigator.userAgent) && !/MSIE 7\.0/i.test(window.navigator.userAgent);
            if($.browser.msie6) {
              $("#welle img").ifixpng();
            }
        }

        /*ADD CURVY CORNERS*/
        $(".feature").css("-moz-border-radius","10px").css("-webkit-border-radius","10px");
        $(".msg").css("-moz-border-radius","10px").css("-webkit-border-radius","10px");
        $("#frmkontakt").css("-moz-border-radius","10px").css("-webkit-border-radius","10px");
      });


$(function(){
	/*FIX PNGS*/
	if($.browser.msie) {
			$.browser.msie6 = $.browser.msie && /MSIE 6\.0/i.test(window.navigator.userAgent) && !/MSIE 7\.0/i.test(window.navigator.userAgent);
			if($.browser.msie6) {
				$("#welle img").ifixpng();
			}
	}
});

function strrev(str) {
   if (!str) return '';
   var revstr='';
   for (i = str.length-1; i>=0; i--)
       revstr+=str.charAt(i)
   return revstr;
}

//+ Jonas Raoni Soares Silva
//@ http://jsfromhell.com/string/rot13 [rev. #1]
String.prototype.rot13 = function(){
    return this.replace(/[a-zA-Z]/g, function(c){
        return String.fromCharCode((c <= "Z" ? 90 : 122) >= (c = c.charCodeAt(0) + 13) ? c : c - 26);
    });
};
