/**
 * @author anja.niemi
 */
 var interface_img = {
 	init: function() {
		//Popupfenster das Bilder vergrössert anzeigt
		var $article_info = $("#article_info").hide().appendTo(document.body);
		$(".img_info").hover(function(){$article_info.html("<img src='"+$(this).find("img").attr('src')+"' />");  $article_info.show();}, function(){ $article_info.hide(); }).mousemove(function(e){
			$article_info.css({
				left: e.pageX + 30,
				top: e.pageY - 120
			});
		});
	}
 };

$(document).ready(function(){interface_img.init()});

