$(document).ready(function() {
	// Struktur geladen

	// Buttons laden
	$("div.mainbuttonClass img").preload({
		find:'.gif',
		replace:'_on.gif'
	});
	// Rollovereffekt
	$("div.mainbuttonClass img").not("div.actClass img").hover(function(){
		this.src = this.src.replace('.gif','_on.gif');
	},function(){
		this.src = this.src.replace('_on.gif','.gif');
	});

});
