$(document).ready(function() {
	
	//category tabs and caroussels
	var coverflowLoaded = [true, false, false];
    var selectionCaroussel;
	
	 $('#explorerSelection > div > ul').tabs();
	 $('#explorerSelection ul.ui-tabs-nav').bind('tabsshow', function(event, ui) {
		 //Test if coverflow is loaded and if it is not the second tab (themes)
		 if(!coverflowLoaded[ui.index] && ui.index != 1) 
		 {
			 coverflowLoaded[ui.index] = true;
			 initializeJCarousel(jQuery('div:first', ui.panel).attr('id'), 2);
		 }
    });
	initializeJCarousel('relatedVideosImageFlow', 1, 2);
	initializeJCarousel('channelsImageFlow', 2);
});

