jQuery(document).ready(function(){
jQuery('.child').hide();

jQuery('a#clickYO').click(function(){
jQuery('.child').show('normal');
});

jQuery('a#clickYO').click(function() {
jQuery('.child').toggle();
}); 

});

//g-dawg, you are the guru

