function checkUncheckAll(theElement) 
{
    arrElmts = theElement.form.elements;
    for(e = 0; e < arrElmts.length; ++e)
        {
            if(arrElmts[e].type == 'checkbox' && arrElmts[e] != theElement)
                {
                    arrElmts[e].checked = theElement.checked
                }
        }
}





$(document).ready(function(){ 
	$("#reminderbox").slideDown(1000);
	$("a[rel*=facebox]").facebox();

	 $(function(){
		 $(".obenlinks").tipsy({gravity: 'nw', fade:true});
		 $(".oben").tipsy({gravity: 'n', fade:true});
		 $(".obenrechts").tipsy({gravity: 'ne', fade:true});
		 $(".rechts").tipsy({gravity: 'w', fade:true});
		 $(".links").tipsy({gravity: 'e', fade:true});
		 $(".untenlinks").tipsy({gravity: 'sw', fade:true});
		 $(".unten").tipsy({gravity: 's', fade:true});
		 $(".untenrechts").tipsy({gravity: 'se', fade:true});
		 $(".auto").tipsy({gravity: $.fn.tipsy.autoNS, fade:true});
	});

});



var IE6UPDATE_OPTIONS = {icons_path: "images/"	}
