(function($) {
	$.fn.mousedownimage = function(mousedown_image) {
		var img1 = $(this).attr('src');
		var img2 = mousedown_image;
		$(this).bind('mouseup',function(){
			$(this).attr('src',img1);
		}).bind('mousedown',function(){
			$(this).attr('src',img2);
		});
	};
	
})(jQuery);

jQuery.preloadImages = function(){
  for(var i = 0; i<arguments.length; i++){
    jQuery("<img>").attr("src", arguments[i]);
  }
}

$.preloadImages("images/STL-Website-Buttons-Suche-on.png", "images/STL-Website-Buttons-Weiter-on.png", "images/STL-Website-Buttons-abbestellen-on.png", "images/STL-Website-Buttons-anmelden-on.png", "images/STL-Website-Buttons-Absenden-on.png");

