﻿ $(document).ready(function(){
    $('img.GroupPhoto').jScale({w:'200px'})
    $('img.ProfilePhoto').jScale({w:'200px'})

    $('#showNotifications').click(function(){
        $('iframe#popupFrame').attr("src","Notifications.aspx");
        $('div#notificationsDiv').toggle("slow");
    });

    $('#showFriendsOnline').click(function(){
        $('iframe#popupFrame').attr("src","FriendsOnline.aspx");
        $('div#notificationsDiv').toggle("slow");
    });
});
