/*--------------------------------------------------------------------
JAVASCRIPT "media-press"

Version: 	3.0 - 2010
author: 	Burocratik (alexandre gomes)
email: 		alex@burocratik.com
website: 	http://www.burocratik.com
-----------------------------------------------------------------------*/

/*-----------------------------------------------------------------------
=Acordeao Normal = slide
-----------------------------------------------------------------------*/
 $(document).ready(function(){
   $(".slide").each(function(){
   	$(this).next().hide().css({overflow:"auto"});
	 });
   $(".slide").click(function(){
   	 $(this).next().slideToggle("normal");
   	 return false;
   });
 })

