//jQuery.preLoadImages(elem sep by ,);
(function($){
  var cache = [];
  $.preLoadImages = function(){
    var args_len = arguments.length;
    for(var i = args_len; i--;){
      var cacheImage = document.createElement('img');
      cacheImage.src = arguments[i];
      cache.push(cacheImage);
    }
  }
})(jQuery);

jQuery.preLoadImages(
'http://chambres-hotes-marais-poitevin.fr/wp-content/themes/relais-theme/images/htcontainer.gif',
'http://chambres-hotes-marais-poitevin.fr/wp-content/themes/relais-theme/images/fond.jpg',
'http://chambres-hotes-marais-poitevin.fr/wp-content/themes/relais-theme/images/basfooter.gif',
  'http://chambres-hotes-marais-poitevin.fr/wp-content/themes/relais-theme/images/header.jpg',
	'http://chambres-hotes-marais-poitevin.fr/wp-content/themes/relais-theme/logo/logo1.jpg',
	'http://chambres-hotes-marais-poitevin.fr/wp-content/themes/relais-theme/logo/logo5.jpg',
	'http://chambres-hotes-marais-poitevin.fr/wp-content/themes/relais-theme/logo/logo4.jpg',
  'http://chambres-hotes-marais-poitevin.fr/wp-content/themes/relais-theme/logo/logo7.png',
  'http://chambres-hotes-marais-poitevin.fr/wp-content/themes/relais-theme/logo/logo8.jpg',
  'http://chambres-hotes-marais-poitevin.fr/wp-content/themes/relais-theme/logo/logo6.png',
	'http://chambres-hotes-marais-poitevin.fr/wp-content/themes/relais-theme/logo/logo2.jpg'
  
);
/******************************************************************************************************/
$(document).ready(function() {

 
  //slidercategorieaccueil(); 
 
});

/*********************************SLIDER ACCUEIL*********************************************************************/
function slidercategorieaccueil(){
  $.each([2472,3,397,1558,2103], function(index, value) {     
      $("#slider-"+ value).easySlider({
      prevId: 'prev-'+ value,
      nextId: 'next-'+ value
  	  });
  });
}         
