$(document).ready(function(){

    $('span.emailMe').click(function() {
        $('div.emailPopup iframe').attr('src', messagingUrl + '/AgentMessage.aspx?AC=' + agentIDforEmailMessage + '&LG=english');
        $('div.emailPopup').show();
        $('div.emailPopup div.msgbox').fadeIn('slow');
        $('div.FirstPeripheral').hide();
        $('div.SecondPeripheral').hide();

    });

    $('div.emailPopup div.msgbox span.closebtn2').click(function() {
        $('div.emailPopup div.msgbox').hide();
        $('div.emailPopup').hide();
        $('div.FirstPeripheral').show();
        $('div.SecondPeripheral').show();

    });

});

