$(document).ready(function(){
	initMain();
});

function initMain()
{
	initSocialButtons(1, 1, 1, 0);
	
	$('#accolades-ticker li:first').show();
	$('#accolades-ticker').vTicker({
		speed: 500,
		pause: 3000,
		animation: 'fade',
		mousePause: false,
		showItems: 1
	});
}



/***************************************************************
 SOCIAL BUTTONS
***************************************************************/

function initSocialButtons(f_like, t_tweet, g_plus, f_share)
{
	$('.social_buttons').each(function(){

		var url = $(this).attr('alt');
		var url_encoded = encodeURIComponent(url);
		
		
		var social_list = '<ul>';
	
		// GOOGLE
		if (g_plus)	 {
			
			console.log(url);
			
			var google = '<g:plusone href="'+url+'"></g:plusone>';
			social_list += '<li class="social_button_google" size="small">'+google+'</li>';
		}
		
		// FACEBOOK
		if (f_like) {
			var facebook = '<iframe src="http://www.facebook.com/plugins/like.php?href='+url_encoded+'%2F&amp;send=false&amp;layout=button_count&amp;width=100&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:21px;" allowTransparency="true"></iframe>';
			social_list += '<li class="social_button_facebook">'+facebook+'</li>';
		}
		
		// TWITTER
		if (t_tweet) {			
			var twitter = '<iframe allowtransparency="true" frameborder="0" scrolling="no" src="http://platform.twitter.com/widgets/tweet_button.html?url='+url_encoded+'" style="width:130px; height:50px;"></iframe>';
			social_list += '<li class="social_button_twitter">'+twitter+'</li>';
		}
	
		social_list += '</ul>';
		$(this).html(social_list);
		
	});
	
	
}

