//jQuery.noConflict();

function form_input_classes(){

    jQuery('input[type="text"]').addClass('text');
    jQuery('input[type="password"]').addClass('text');
    jQuery('input[type="checkbox"]').addClass('checkbox');
    jQuery('input[type="radio"]').addClass('radiobutton');
    jQuery('input[type="submit"]').addClass('submit');
    jQuery('input[type="image"]').addClass('buttonImage');
}

jQuery(document).ready(function() {
    form_input_classes();
    jQuery(".labelize input:text").clearingInput();
	Cufon.replace('#content-header h1, .f-replace-sean', { fontFamily: 'Hand Of Sean' });
	Cufon.replace('.button-small, #nav, .column-header', { fontFamily: 'Serif6 Beta Rg' });
    
    var uri = location.href;
    var outreachCrewSplash = /\/page\/outreach\/splash\/crewmates/;
    var ourteachCrewIndiv = /\/page\/outreach\/view\/crewmates/;
    if(outreachCrewSplash.test(uri) || ourteachCrewIndiv.test(uri)){
        //console.log('uri detection worked');
        jQuery('#titletext, #blue_hat').remove();
        jQuery('#contribute_now_link').next().next().next().hide();
        jQuery('#contribute_now_link').next().next().hide();
    }
    
});
