/**
 * sharethis_custom.js
 *
 **/

var opened = false;

var get_share = function () {
    var stwrapper = $('#stwrapper');
    var this_url = escape(encodeURIComponent(window.location));
    //var st_url = 'http://wd.sharethis.com/share3x/lightbox.3.9.2-rc1.html#popup/publisher=7f487805-b0ce-48c9-9773-d65daefe434f/type=website/buttonText=Share%20This/offsetLeft=-240/popup=false/button=false/sessionID=1248088157989.2378/fpc=false/pUrl=' + this_url + '/guid_index=1/guid=ab53ef0b58e6e927d9d29e6a4c7579b3814d818a/page=home';
    var st_url = 'http://wd.sharethis.com/share3x/lightbox.3.9.2-rc1.html#popup/publisher=7f487805-b0ce-48c9-9773-d65daefe434f/type=website/buttonText=Share%20This/offsetLeft=-240/popup=false/button=false/pUrl=' + this_url + '/url=' + this_url + '/page=home';
    var stframe = $('<iframe src="' + st_url + '" style="top: 0px; left: 0px; visibility: visible;" name="stframe" class="stframe" id="stframe" allowtransparency="true" scrolling="no" width="353" frameborder="0" height="598"></iframe><a href="javascript:openclose_share();"><img style="position: absolute; z-index: 9;" class="stclose" title="close" src="http://w.sharethis.com/images/pic3.gif" width="8" height="8" /></a>');
    stwrapper.html(stframe);
}

var openclose_share = function () {
    if (opened) {
        var stwrapper = $('#stwrapper');
        stwrapper.text('');
        opened = false;
    } else {
        get_share();
        opened = true;
    }
}


