$(document).ready( function () {
	
	$('#trgdonate').click(function() {
      $('#donateform').submit();
    });
	
	$("a.event").click(function() {  
        	
            var link = $(this).attr("rel");
            var pos = $(this).position();
            
            $("#eventinfo").load(link, function () {
            	$("#eventinfo").css({ "left": (pos.left) + "px", "top": (pos.top + 20) + "px" });
            	$("#eventinfo").fadeIn();
                $("#eventinfo a.closewin").click(function() { 
                    $("#eventinfo").fadeOut();
                });		
            });            
            
        });
	
});
