$(function() {
	
	// this initialises the demo scollpanes on the page.
	$('#pane1').jScrollPane({showArrows:true,scrollbarWidth:15});
});

$.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}

$.preloadImages("/images/logo.gif", "/images/main_bg.gif", "images/nav/nav_aktuelles.png", "images/nav/nav_kontakt.png", "images/nav/nav_profil.png", "images/nav/nav_referenzen.png");

$.fn.hoverClass = function(c) {
	return this.each(function(){
		$(this).hover( 
			function() { $(this).addClass(c);},
			function() { $(this).removeClass(c); }
		);
	});
};
