// make footer boxes equal height
function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}

$(document).ready(function() {
    equalHeight($(".equal"));
    
});


// clear form fields 
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}

//image rollover ob join now btn
$('#joinBtn').hover(function() {
	$(this).attr("src","/sites/200club/img_t/btn_joinNowOver.png");
		}, function() {
	$(this).attr("src","/sites/200club/img_t/btn_joinNow.png");
});



