//####### Copyright Mavice LLC 2009 – www.mavice.com ########

$(document).ready(function(){

    new Accordion("#console_games_browser");
    new Accordion("#online_games_browser");

    $.get("ss.action?service=/v2/m1/xml/casual/charmgirls/mall/getFashions&template=getRecentFashions&noflash=1&referer=home&orderBy=added_mall_date&sortOrder=desc&pageSize=24"+getCredentials(), {}, function(data, textStatus){

        $("#home_fashions_pictures").html($(data).find("#home_fashions_pictures").html());

        // Set up the homepage's recent fashion browser
        var home_fashions_pictures = new HorizontalNodeBrowser("home_fashions_pictures", 1);
        $("#home_fashions_pictures .left").live("click", function(){
            home_fashions_pictures.animate("left");
        });
        $("#home_fashions_pictures .right").live("click", function(){
            home_fashions_pictures.animate("right");
        });
    }, "html");
    
    $.get("ss.action?service=/v2/m1/xml/casual/charmgirls/gallery/getTop3ItemDesigner&template=getTopDesigner&noflash=1&referer=home"+getCredentials(), {}, function(data, textStatus){
        $("#designerOfTheWeek").html($(data).find("#designerOfTheWeek"));
    }, "html");    

    var flashvars = {
        contentpath: $("#home_flash .srcFile").text(),
        accountId: ($.cookie("userId") ? $.cookie("userId") : 0),
        xmlpath: $("#home_flash .xmlFile").text(),
        requestorId: "casual-charmgirlsclub",
        username: ($.cookie("displayName") ? $.cookie("displayName") : 0),
        personaId: ($.cookie("personaId") ? $.cookie("personaId") : 0),
        ssbase: "/ss.action?service="
    };
    var params = {
        wmode: "opaque",
        allowFullScreen: "false",
        allowScriptAccess: "always"

    };
    var attributes = {
        name: "flash_swf"
    };
    
    swfobject.embedSWF("Shell.swf", "flash_swf", "954", "364", "9.0.0.0", "expressInstall.swf", flashvars, params, attributes);
});

