/*******************************
* Workplace Hero SXSW Page JS
* (c) 2010, 2Catalyze, Inc. All rights reserved
********************************/

$(document).ready(function() {
    $.getJSON('http://' + window.location.host + '/wp-content/themes/workplacehero/twitterPhotos.php?winners',function(photos){
        var lastPhoto = "";
        if(photos && photos['info']['numphotos'] > 0){
            $('#instant_winners p.loading').css('display','none');
            var output = '<ul id="winner_list">';
            for(i=0;i<photos['photos'].length;i++){
                var photo = photos['photos'][i];
                if(lastPhoto != photo['link']){
                    lastPhoto = photo['link'];
                    output += '<li><a class="instant_photo" href="' + photo['link'] + '" title="See the photo"><img src="' + photo['thumburl'] + '" alt="' + photo['description'] + '" /></a>';
                    output += '<p class="instant_winner">' + photo['description'] + '</p></li>';
                }
            }
            output += '</ul>';
            $('#instant_winners').append(output);
        }else{
            $('#instant_winners p.loading').css('display','none');
            $('#instant_winners').append('<p><strong>Sorry! No instant winners yet. Check back really soon!</strong></p>');
        }
    });
});
