/*
**  Utilisation de la librairie jQuery
**  http://docs.jquery.com/Downloading_jQuery#Download_jQuery
*/

jQuery(function($) {

    Cart.init();

    if($('#best-sellers .carousel').length) {
        $('#best-sellers .carousel').carouselSlide({
            manual: true,
            auto: true,
            speed: 1000,
            frequency: 8000
        });
    }

    if($('a.zoom').length) {
        $('a.zoom').colorbox();
    }

    $('#finish-command').find('.paiement-type #radio-cb').click(function() {
        $('#finish-command .paiement-carte').fadeIn();
    });

    $('#finish-command').find('.paiement-type #radio-cheque').click(function() {
        $('#finish-command .paiement-carte').fadeOut();
    });

    $('.extern').click(function(){
      window.open($(this).attr('href'));
      return false;
    });

    $('.passer_commande').click(function(){
      if( false == $('.cgv input').attr('checked'))
      {
        alert("Veuillez accepter les conditions générales de ventes avant de passer votre commande.");
        return false;
      }
    });
	
	//home > facebook wall	
	$("#facebook_result").facebook_feed({
		//feed: 'http://graph.facebook.com/153544664678969/feed',
		feed: 'https://graph.facebook.com/153544664678969/feed/?access_token=168161573247322|3657bb4c927640162d366809.1-812788863|9Ln3oYECSri8YVF7i3V4JznNZJE',
		nb: 12,
		access_token: "168161573247322|3657bb4c927640162d366809.1-812788863|9Ln3oYECSri8YVF7i3V4JznNZJE"
	});

}); /* jQuery end */
