$().ready(function() {

    $("a.image_gallery").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'cyclic'		:	true
	});
	
    $(".parent").click(function() {
        $(this).addClass("selected");
        $(".other").removeClass("selected");
        $("input[name='whoareyou_radio']").val("whoareyou_parent");
        $("#whoareyou_parent").attr("checked", "checked"); 
        $("#otherform").hide();
        $("#parentform").show();
	});

    $(".other").click(function() {
        $(this).addClass("selected");
        $(".parent").removeClass("selected");
        $("input[name='whoareyou_radio']").val("whoareyou_other");
        $("#whoareyou_other").attr("checked", "checked"); 
        $("#otherform").show();
        $("#parentform").hide();
	});

});


