
this.imagePreview = function(){	
		xoff =  30
        yoff = -16
        yoff2 = 0
        yoff2a = 35
        imgheight2 = 0
        winheight = 0
	$("a.festbox-preview").hover(
        function(e){
            //this.title = "";
            var podpis = this.title==''?'':'<span style="font-size:8pt;margin:0px 15px;padding:5px 0px;float:left;">'+this.title+'</span><br />';
            winheight = $(window).height()
            $("#festbox-preview").remove();

            $("body").append('<div style="background-color:#fff;z-index:300;position:absolute;border: 1px solid #dadada" id="festbox-preview">'+ podpis +'<img id="festbox-preview-img" src="'+ this.href +'" /></div>');


            $("#festbox-preview")
                .css("top",(e.pageY - yoff + yoff2) + "px")
                .css("left",(e.pageX + xoff) + "px")
                .css("position", "absolute")
                .fadeIn("fast")
        },

        function(){
            //this.title = this.t;
            $("#festbox-preview").remove();
       
        }
    );

    $("a.festbox-preview").click(function(){
         $("#festbox-preview").remove();
    });

	$("a.festbox-preview").mousemove(function(e){

        $("#festbox-preview")
            .css("top",(e.pageY - yoff + yoff2) + "px")
            .css("left",(e.pageX + xoff) + "px");
	});

};