$(document).ready(function(){
    var trig = $("label.doIt");
    var aTrig = $("a.doIt");
    var speed = 300;
    var allBuckets = trig.next();
    
    trig.click(function(){
        var indexMe = $(trig).index(this);
        var bucket = $(this).next();
        var showing = $(".down");
		
		aTrig.html("Get more information");
		$(this).prev().attr("checked", "checked")
		if(!bucket.hasClass("down")){
		    $(aTrig[indexMe]).html("Hide information");
		}
            bucket.addClass("down").slideDown(speed, function(){
            showing.removeClass("down").slideUp(speed);
        });
    });
    
    aTrig.click(function(){
		aTrig.html("Get more information");
		$(this).html("Hide information");
        var whatA = $(aTrig).index(this);
		$(trig[whatA]).trigger("click");
		return false;
    });
	
	$("a.sendIt").click(function(){
		
	});
	
	
	
});