 $(document).ready(function(){
          $(document).bind("contextmenu",function(e){return false;});
           var IE6 = false
           var strChUserAgent = navigator.userAgent;
           var intSplitStart = strChUserAgent.indexOf("(",0);
           var intSplitEnd = strChUserAgent.indexOf(")",0);
           var strChMid = strChUserAgent.substring(intSplitStart, intSplitEnd);
           if(strChMid.indexOf("MSIE 6") != -1) IE6 = true;
           if(IE6){
                      $('#popup_compte').css({'background-color':'black'});
                      DD_belatedPNG.fix('.boutique,.plus,#title_pop_compte img,.main_line_top,.main_line_bottom');
           }
	    $(function() {
				    setInterval( slideSwitch, 10000 );
			    });
			    function slideSwitch() {
				var $active = $('#slideshow div.active');

				if ( $active.length == 0 ) $active = $('#slideshow div:last');

				var $next =  $active.next().length ? $active.next()
				    : $('#slideshow div:first');

				$active.addClass('last-active');

				$next.css({opacity: 0.0})
				    .addClass('active')
				    .animate({opacity: 1.0}, 1000, function() {
					$active.removeClass('active last-active');
				    });
			    }
		$('#moncompte').click(function(){
			$('#background_compte').fadeIn(200);
			$('#popup_compte').fadeIn(200);
			return false;
		});
		$('#close').click(function(){
			$('#background_compte').fadeOut(200);
			$('#popup_compte').fadeOut(200);
			return false;
		});

      });
