﻿/// <reference path="jquery-1.2.6-vsdoc.js" />

function startPriveChat(memberId) {
    window.open('/Modules/MeetingPlace/Chat/ChatPopup.aspx?o=' + memberId, 'Chat' + memberId, 'width=590,height=600,menubar=no,location=no,resizable=yes,scrollbars=no,status=no');
    return false;
}

$(document).ready(function() {

    //ie
    $("input:radio").css("border", "none")

    $(".MemberThumb").corner("8px")
    $(".melding").corner("10px")
    $("ul.Tabs li.selected").corner("7px top")
    $(".HelpInfo").corner("10px")

    $("a[rel^='prettyPhoto'][href!='']").prettyPhoto({
        animationSpeed: 'fast', /* fast/slow/normal */
        padding: 40, /* padding for each side of the picture */
        opacity: 0.35, /* Value betwee 0 and 1 */
        showTitle: true, /* true/false */
        allowresize: true /* true/false */
    });

    $("#Menu li").hover(
	    function() { $("ul", this).fadeIn(100) },
	    function() { $("ul", this).fadeOut(100) }
	)


     $("#Av").flash({
         src: "/DtdAv.swf",
         width: "100%",
         height: 450
     });

    $("#Av").dialog({
        bgiframe: true,
        autoOpen: false,
        height: 500,
        width: 800,
        modal: true
    });

    $(".AvLink").click(function() {
        $("#Av").dialog("open");
        return false;
    });

});
