/* 
 $Revision: 57968 $
 $Author: zistel $
 $Date: 2011-03-31 13:52:06 +0200 (Do, 31 Mrz 2011) $
 */
$(function(){if(!Cookie.cookieWriteable()||(Cookie.cookieWriteable()&&!Cookie.cookieExists())||Cookie.readCookie()=="open"){$("div#online-buchung.ttg-box").removeClass("ttg-closed").addClass("ttg-open")}$("div#online-buchung.ttg-box h2").click(function(){$(this).toggleThis()});$("div#online-buchung.ttg-box *").focus(function(){if($("div#online-buchung.ttg-box").hasClass("ttg-closed")){$(this).toggleThis()}})});$.fn.toggleThis=function(){if($("div#online-buchung.ttg-box").hasClass("ttg-closed")){$("div#online-buchung.ttg-box").removeClass("ttg-closed").addClass("ttg-open");$.cookie("ttg-ttomas","open")}else{$("div#online-buchung.ttg-box").removeClass("ttg-open").addClass("ttg-closed");$.cookie("ttg-ttomas","closed")}};var Cookie={cookieWriteable:function(){if($.cookie("ttg-ttomas")!=null){return true}$.cookie("ttg-ttomas","1");var a=$.cookie("ttg-ttomas")!=null;$.cookie("ttg-ttomas","");return a},cookieExists:function(){return $.cookie("ttg-ttomas")!=null&&($.cookie("ttg-ttomas")=="open"||$.cookie("ttg-ttomas")=="closed")},readCookie:function(){return $.cookie("ttg-ttomas")}};
