// MAIN FUNCTIONS FOR SITE 


// Creates the nice fading effect for the top index page
   $(function(){
   		$('#branding ul').innerfade({
			speed: 1000,
			timeout: 5000,
			type: 'sequence',
			containerheight: '310px'
		});
	});
   
// Preloading of the main header graphics for WLC   
jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}

$.preloadImages("../images/drinkscase.jpg", "../images/cartridge-magazinecase.jpg", "../images/luxurytravelbags.jpg",
				"../images/leatherbelts.jpg", "../images/leathergloves.jpg", "../images/cartridgebag.jpg", 
				"../images/tottie-box.jpg", "../images/keyfobs.jpg", "../images/quick-releasebelt.jpg");

 
  