// Content Accordion
jQuery(document).ready(function($){
    $('.accordionContent').hide();
    $('.accordionToggle').click(function(){
        if( $(this).next().is(':hidden') ) {
        	$('.accordionToggle').removeClass('active').next().slideUp();
            $(this).toggleClass('active').next().slideDown("fast");
        }
        else {
        	$(this).toggleClass('active').next().slideUp("fast");
        }
        return false; // Prevent the browser jump to the link anchor
    });
});


// Contact Form Button
jQuery(document).ready(function($){

	$('#maleButton').click(function(){
		$('#maleLabel').css('background-position', '-82px 0px');
		$('#femaleLabel').css('background-position', '0px 0px');
	});

	$('#femaleButton').click(function(){
		$('#femaleLabel').css('background-position', '-81px 0px');
		$('#maleLabel').css('background-position', '0px 0px');
	});
	
});

