function clickTab() {
	
	if(jQuery('#hiddentab').height() == '0') {
		jQuery('#hiddentab').animate({height: '+=150px'}, 'slow');
	} else {
		jQuery('#hiddentab').animate({height: '-=150px'}, 'slow');
	}
	
	return false;
}

function dsReady() {	
	
	jQuery('#hiddentab').animate({height: '-=150px'}, 'fast');
	jQuery('#smalltab').click(clickTab);
	
}
jQuery(document).ready(dsReady);