function disappear_box(box)
{
         $("#"+box).animate(
         {
		height: 'hide',
		opacity: 'hide'
	}, 'slow');
}
function appear_box(box)
{
         $("#"+box).animate(
         {
		height: 'show',
		opacity: 'show'
	}, 'slow');
}

function switch_box(act, box)
{
	$("#"+act).click().toggle(function () {
	         $("#"+box).animate(
	         {
	                 opacity: 'show',
	                 height: 'show'
	         }, 'slow');
	}, function () {
	         $("#"+box).animate(
	         {
	                 opacity: 'hide',
	                 height: 'hide'
	         }, 'slow');
         });
}

function fav_appear(box)
{
         $("#"+box).animate(
         {
		opacity: '1'
	}, 'slow');
}
function fav_disappear(box)
{
         $("#"+box).animate(
         {
		opacity: '0'
	}, 'slow');
}