/*****************************/
function slideshowPop(sSetID) {
sURL = "http://www.flickr.com/slideShow/index.gne?user_id=experiencegla&set_id=" + sSetID;
window.open(sURL, 'flickr', 'toolbar=0,scrollbars=1,statusbar=0,resizable=1,width=750,height=750');

return true;
}
/*****************************/

x = 0;
function slideIt() {
    $(".jqGSImgContainer li").eq(x).find('img').click();
    x++;
    if ( x > 3 ) { x = 0; }
}
