// JavaScript Document
$(document).ready(function(){
		jQuery('#menu').flash(
			{
				'src':'fileadmin/templates/menu.swf',
				'width':'255',
				'height':'280',
				'wmode':'transparent'
			}
		);

		jQuery('#schrift img').hide();

		jQuery('#tbtn1').hover(
		function() {jQuery('#timg1').stop(true, true).fadeIn('slow')},
		function() {jQuery('#timg1').stop(true, true).fadeOut('fast')}
		);
		jQuery('#tbtn2').hover(
		function() {jQuery('#timg2').stop(true, true).fadeIn('slow')},
		function() {jQuery('#timg2').stop(true, true).fadeOut('fast')}
		);
		jQuery('#tbtn3').hover(
		function() {jQuery('#timg3').stop(true, true).fadeIn('slow')},
		function() {jQuery('#timg3').stop(true, true).fadeOut('fast')}
		);
		jQuery('#tbtn4').hover(
		function() {jQuery('#timg4').stop(true, true).fadeIn('slow')},
		function() {jQuery('#timg4').stop(true, true).fadeOut('fast')}
		);
});

