
(function($) {
  var cache = [];
  // Arguments are image paths relative to the current page.
  $.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)

$(document).ready(function(){

    $(".producten ul li").hover(
        function() {
            $(this).find("a:first").addClass("hover");
            $(this).children("ul").slideDown(150);
        },
        function() {
            $(this).find("a:first").removeClass("hover");
            $(this).children("ul").slideUp(150);
        }
    );

	$('a.tooltip[title]').qtip({ style: { name: 'red', tip: true } })
	$('#gallery a').lightBox();
	
});

function changeImage(img,slogan) {
	$(".productfoto").css("backgroundImage","url("+img+")");
	$("#slogan").html(slogan);
}