function openSlide(id){
	var to=document.getElementById('innerDiv'+id).offsetHeight;
	jQuery('#outerDiv'+id).stop(true);
	jQuery('#outerDiv'+id).animate({height:to+"px"},500);
}

function closeSlide(id){
	jQuery('#outerDiv'+id).stop(true);
	jQuery('#outerDiv'+id).animate({height:"18px"},700);
  
}
  
  