$(document).ready(function() {
	//document.getElementById('NL_box').innerHTML="<span>Inscrivez-vous</span> à notre lettre d'information";
	$("a.thickbox, a[rel='lightbox']").fancybox({'hideOnContentClick': false,imageScale : true}); 
	$("a#box_ami").fancybox({frameWidth : 300,frameHeight : 200}); 
	if(document.all){$("a#box_fav").click(function(){window.external.AddFavorite(location.href, document.title);});
	}else{$("a#box_fav").fancybox({'hideOnContentClick': true,frameWidth : 400,frameHeight : 100});}
			
	$('#logo').hover(function() { //mouse in
   		$(this).find('img').stop().animate({ opacity: '0' }, 250);
  	}, function() { //mouse out
    	$(this).find('img').stop().animate({ opacity: '1' }, 250);
   	});
	$('.pane1').jScrollPane();
	
	$(function() {
		$('#s1').cycle({ 
			timeout: 3000, 
			speed:   400,
			next: '#next',
			prev:"#prev",
			timeout: 0 ,
		pagerAnchorBuilder : function(index, DOMelement) {		
			switch(index) {
				case 0:
					return ('<li id="goto1"><a href="#">Prêt à porter femme</a></li>');
				break;
				case 1:
					return ('<li id="goto2"><a href="#">Prêt à porter homme</a></li>');
				break;
				case 2:
					return ('<li id="goto3"><a href="#">Nouveautés/Promotions</a></li>');
				break;
				case 3:
					return ('<li id="goto4"><a href="#">Mercerie</a></li>');
				break;
			}
		}
		});
		$('#goto1').click(function() { 
			$('#s1').cycle(0); 
			return false; 
		});
		$('#goto2').click(function() { 
			$('#s1').cycle(1); 
			return false; 
		});
		$('#goto3').click(function() { 
			$('#s1').cycle(2); 
			return false; 
		});
	});
	
});


      

