﻿$(document).ready(function () {

    $('a#fancybox-close').hover(function () {
        $('div.slam').fadeIn();
        var text = $('input[id$=hdnCloseSoundText]').val();
        var sound = $(this).data('sound');

        if (text != '' && sound != 'true') {
            $(this).data('sound', 'true');
            $("#soundContent")[0].playSound(text);
        }
    }, function () {
        $('div.slam').fadeOut();
    });

    $('a#fancybox-close').click(function () {
        $('div.slam').hide();
    });

    $('a#fancybox-close').hover(function () {
        playArtisSound(this, $('input[id$=hdnPeopleSoundText]').val());
    }, function () {
        hideNextDiv(this);
    });

    $('img[id*=imgTalent]').hover(function () {
        playArtisSound($(this).parent(), $('input[id$=hdnPeopleSoundText]').val());
    }, function () {
        hideNextDiv($(this).parent());
    });
});
