/*******************************
* Workplace Hero Home 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){
        if(photos && photos['info']['numphotos'] > 0){
            $('#instant_winners p.loading').css('display','none');
            var photo = photos['photos'][0];
            var output = '';
            output += '<p><a href="' + photo['link'] + '" title="See the photo"><img src="' + photo['thumburl'] + '" alt="' + photo['description'] + '" /></a></p>';
            output += '<p>"' + photo['description'] + '"</p>';
            output += '<p><strong><a href="/sxsw" title="All the SXSW winners">See all the winners</a> on our SXSW page</strong></p>';
            $('#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>');
        }
    });
});