//FONCTION SLIDE : FAIRE APPARAITRE LES INFOS ALBUM
//ON AFFICHE LA DIV DE CLASS ITEMCONTENT AU CLICK SUR L IMAGE FLECHE QUI EST UN LIEN DE CLASS CLOSEE1
  		            $(document).ready(
                    function () {
                        $('a.closeE1').bind('click', toggleContent1);
                        /*$('div.groupWrapper').Sortable(
                            {
                                accept: 'groupItem',
                                helperclass: 'sortHelper',
                                activeclass : 	'sortableactive',
                                hoverclass : 	'sortablehover',
                                handle: 'div.itemHeader',
                                tolerance: 'pointer',
                                onChange : function(ser)
                                {serialize(ser);
                                },
                                onStart : function()
                                {
                                    $.iAutoscroller.start(this, document.getElementsByTagName('body'));
                                },
                                onStop : function()
                                {
                                    $.iAutoscroller.stop();
                                }
                            }
                        );*/
                    }
                );

                var toggleContent1 = function(e)
                {
                    var targetContent = $('div.itemContent', this.parentNode.parentNode);
                    if (targetContent.css('display') == 'none') {
                        targetContent.slideDown(400);
                        $(this).html("D&eacute;tails&nbsp;<img src='images/slide/fleche_haut.gif' alt='affichage' style='width:15px; height:15px;' />&nbsp;");
                    } else {
                        targetContent.slideUp(400);
                        $(this).html("D&eacute;tails&nbsp;<img src='images/slide/fleche_droite.gif' alt='affichage' style='width:15px; height:15px;' />&nbsp;");
                    }
                    return false;
                };
