

$(function() {

	$.fn.accordeon_menu = function() {

	return this.find(".accordeon_item").each( function() {
	
		var item = $(this);
		
		item.content = $(".accordeon_content", item);
		item.content.height = Math.max(item.content.height(), $(".accordeon_foto", item).height() );
		item.content.css({ overflow: 'hidden', height: '0' });
		item.link = $("a.accordeon_title", item);
		item.link = $("a.accordeon_title", item);
		
		item.link.bind("click", function() {
			
						if(item.hasClass("open")) {
							item.content.animate({ height: 0 }, 400);
							item.removeClass("open");
						} else {	
							$(".open").find(".accordeon_content").animate({ height: 0 }, 400);
							$(".open").removeClass("open");
							item.content.animate({ height: item.content.height }, 400);
							item.addClass("open");
						}
							return false;
							
					});
			
		
		});
	
	}

	
});


$(document).ready(function(){ 
/*         $(document).pngFix();  */
        $("#accordeon_menu").accordeon_menu();
    });
