﻿/*!
* Copyright 2010
* Sound Event - www.soundevent.com
* Author: Spain McMillen
* Terms of use: do not remove.
*/

$(document).ready(function () {
    var dialogOpts = {
        modal: false,
        autoOpen: false,
        width: 280,
        height: 210,
        draggable: false,
        resizeable: false,
        open: function () {
            $("#container").load(url);
        }
    };
    $("#container").dialog(dialogOpts);
    var d = $("div.showDetails");
    d.hover(function () {
        var element = this.title;
        var d2 = $(this);
        var position = d2.position();

        var pos = d2.offset();
        var width = d2.width();

        var x = pos.left + width;
        var y = pos.top - $(document).scrollTop() - 20;

        url = "Flyout.aspx?Id=" + element;
        $("#container").dialog('option', 'position', [x, y]);
        $("#container").dialog("open");
    },
		    function () {
		        $("#container").dialog("close");
		        $("#container").empty();
		    });
});

