$(document).ready(function(){

	$( "#socialHome" ).tabs({ selected: 0 });	

	$(".join").fancybox({
		'type' : 'iframe',
		'titleShow' : false,
		'width': 449,
		'height': 527
	});
	
	$(".btsVideo").fancybox({
		'type' : 'iframe',
		'titleShow' : false,
		'width': 852,
		'height': 480
	});
	
});


$.jGFeed('http://search.twitter.com/search.atom?from=bongojeans',
	function(feeds){
	  for(var i=0; i<feeds.entries.length; i++){
		var entry = feeds.entries[i];
		var empty = feeds.entries[i].title;
		if(empty != "" || null){//if the entry title is blank, then don't do anything. this is typical for FB polls, etc
			$("#twFeed").append("<div class=\"twentry\">" + entry.contentSnippet.substr(0, 100) +"... <a href=\""+entry.link +"\" target=\"_blank\" onclick=\"_gaq.push(['_trackEvent', 'Twitter', 'Play', 'Bongo_TwitterFeed']);\">READ MORE</a></div>").css({"font-size":"11px", "line-height": "14px"});
		}
	  }
	}, 2);
	
  $.jGFeed('http://www.bongo.com/feeds/bongofacebook.xml',
	function(feeds){
	  for(var i=0; i<feeds.entries.length; i++){
		var entry = feeds.entries[i];
		var empty = feeds.entries[i].title;
		if(empty != "" || null){//if the entry title is blank, then don't do anything. this is typical for FB polls, etc
			$("#fbFeed").append("<div class=\"fbentry\">" + entry.contentSnippet.substr(0, 100) +"... <a href=\""+entry.link +"\" target=\"_blank\" onclick=\"_gaq.push(['_trackEvent', 'FacebookFeed', 'Play', 'Bongo_FacebookFeed']);\">READ MORE</a></div>").css({"font-size":"12px", "line-height": "14px"});
		}
	  }
	}, 2);
		
		
		
		


