/*
 * basic functions 1aSport
 * Author: Alex Winterbauer
 */

$(document).ready(function(){
	$(".teaserFull > img").hover(
		function() {
			$(".adBox").show();
	});
	
	$(".adRubrik > p > a").click (
		function(){
			$(".adBox").hide();
	});
	
});