fachkarte = null;
$(document).ready(function() {
	if ($('#container123')) {
		/*loadImage('fileadmin/templates/im/maas-products-with-text-wohnwelt.jpg');
		loadImage('fileadmin/templates/im/maas-products-with-text-baustoffe.jpg');
		loadImage('fileadmin/templates/im/maas-products-with-text-fliesen.jpg');
		loadImage('fileadmin/templates/im/maas-products-with-text-bauelemente.jpg');
		loadImage('fileadmin/templates/im/maas-products-with-text-badsan.jpg');
		loadImage('fileadmin/templates/im/maas-products-with-text-galabau.jpg');
		loadImage('fileadmin/templates/im/maas-products-with-text-fachmarkt.jpg');*/

		$('#categories').show("scale", {}, 2000);

		var static_path = 'fileadmin/templates/im/';
		$('.category').hover(
		  function () {
				$('#categories').find('img').attr('src', static_path+'categories-'+$(this).attr('alt')+'.jpg');
		  },
		  function () {
		    $('#categories').find('img').attr('src', static_path+'categories.jpg');
		  }
		);
	}
	/*
	fachkarte = $('#fachkarte');
	if (fachkarte) {

		$('#areawohnwelt'   ).mouseenter(function() { fachkarte.attr('src', 'fileadmin/templates/im/maas-products-with-text-wohnwelt.jpg'); });
		$('#areawohnwelt'   ).mouseleave(function() { fachkarte.attr('src', 'fileadmin/templates/im/maas-products-no-text.jpg'); });
		$('#areabaustoffe'  ).mouseenter(function() { fachkarte.attr('src', 'fileadmin/templates/im/maas-products-with-text-baustoffe.jpg'); });
		$('#areabaustoffe'  ).mouseleave(function() { fachkarte.attr('src', 'fileadmin/templates/im/maas-products-no-text.jpg'); });
		$('#areafliesen'    ).mouseenter(function() { fachkarte.attr('src', 'fileadmin/templates/im/maas-products-with-text-fliesen.jpg'); });
		$('#areafliesen'    ).mouseleave(function() { fachkarte.attr('src', 'fileadmin/templates/im/maas-products-no-text.jpg'); });
		$('#areabauelemente').mouseenter(function() { fachkarte.attr('src', 'fileadmin/templates/im/maas-products-with-text-bauelemente.jpg'); });
		$('#areabauelemente').mouseleave(function() { fachkarte.attr('src', 'fileadmin/templates/im/maas-products-no-text.jpg'); });
		$('#areabadsan'     ).mouseenter(function() { fachkarte.attr('src', 'fileadmin/templates/im/maas-products-with-text-badsan.jpg'); });
		$('#areabadsan'     ).mouseleave(function() { fachkarte.attr('src', 'fileadmin/templates/im/maas-products-no-text.jpg'); });
		$('#areagalabau'    ).mouseenter(function() { fachkarte.attr('src', 'fileadmin/templates/im/maas-products-with-text-galabau.jpg'); });
		$('#areagalabau'    ).mouseleave(function() { fachkarte.attr('src', 'fileadmin/templates/im/maas-products-no-text.jpg'); });
		$('#areafachmarkt'  ).mouseenter(function() { fachkarte.attr('src', 'fileadmin/templates/im/maas-products-with-text-fachmarkt.jpg'); });
		$('#areafachmarkt'  ).mouseleave(function() { fachkarte.attr('src', 'fileadmin/templates/im/maas-products-no-text.jpg'); });
	}
	*/
});
function loadImage(src) {
	var img = new Image();
	// load image
	$(img).load(function () {
		$(this).remove();
	}).attr('src', src);
}

