﻿$(function() {

			$('.coverbox').mouseover(function() {
				var link = $(this);
				if(!$('#coverbox-cover').length) {
					var canvas = $('<div style="margin: 5px;" id="coverbox-cover" class="coverbox-load"></div>');
					canvas.appendTo(link);
					var image = $('<img src="'+ link.attr('img') +'" alt="'+ link.attr('title') +'"/>');					
					image.appendTo(canvas);
				}
			});

			$('.coverbox').mouseout(function() {
				$('#coverbox-cover').remove();
			});
		});

