jQuery.noConflict();
jQuery(document).ready(function(){
	jQuery("#col3 img").after("<img src='fileadmin/templates/images/home/start.png' class='start_image_overlay' />");
	jQuery("#col3 a").hover(
		// hier muss das transparente Bild zusaetzlich darueber eingeblendet werden
		function() {
			jQuery("#col3 img.start_image_overlay").fadeIn("slow");
		},
		// und wieder ausblenden
		function() {
			jQuery("#col3 img.start_image_overlay").fadeOut("slow");
		}
	);
});

