I hear from the comments that toggle does not fit here, so I removed it. The code below works...but is there a better way to do this...my Jquery is limited. Thank you.
$(document).ready(function(){
$('div.botColorBoxBtn1').click(function() {
$("div.botColorBox").css({ 'height':'90px'});
$('div.botColorBoxBtn1').hide();
$('div.botColorBoxBtn2').show();return false;
});
});
$(document).ready(function(){
$('div.botColorBoxBtn2').click(function() {
$("div.botColorBox").css({ 'height':'11px'});
$('div.botColorBoxBtn2').hide();
$('div.botColorBoxBtn1').show();return false;
});
});