﻿/// <reference path="http://ajax.microsoft.com/ajax/jQuery/jquery-1.4.1-vsdoc.js" />
function FacebookResizer(appId, delay) {

    var _delay = delay;
    var _appId = appId;

    // Loads all the data needed for Country and StateProvinces manipulation
    this.AutoResize = function() {
        window.fbAsyncInit = function() {
            FB.init({
                appId: _appId,
                status: true, // check login status
                cookie: true, // enable cookies to allow the server to access the session
                xfbml: true // parse XFBML
            });
            FB.Canvas.setAutoResize(_delay);
        };
    };
}
