var infoChaine = new Array();

infoChaine['noRecept'] = [
	"tf1","france2","france3","canalplus","france5","m6","arte","direct8","w9","tmc","nt1","nrj12","lcp","france4","bfmtv","itele","virgin17","gulli","orangesportinfo","tv5monde","france0"
]; //chaines accessibles par tous les moyens de réception.

infoChaine['astra'] = [
	"tf1","france2","france3","canalplus","france5","m6","arte","direct8","w9","tmc","nt1","nrj12","lcp","france4","bfmtv","itele","virgin17","gulli","orangesportinfo","tv5monde","france0",
	"skynews","cnbceurope","m6boutique","bestofshopping","kto","cctv",
	"abmoteurs","luxetvhd","france24","france24English","france24-arabe","euronews","bbcworld","cnn","dw","mediasat1","tvppolonia",
	
	"Orangecinemax","Orangecinehappy","Orangecinechoc","Orangecinenovo","Orangecinegeants","vod",
	"rtl9","ab1","mangas","escales","toutelhistoire","chasseetpeche","encyclopedia","animaux","game-one","motorstv","sportplus","jimmy","mcm","boomerang","e-entertainment",
	"action","cinefx","cinepolar","cinecinemaculte","cinecinemaclassic","cinecinemastar","tcm",
	"piwi","teletoon","kids-and-co","boing",
	"orangesporttv","sportplus","espnclassicsport","motorstv","motorstv_thematique","sportplus_thematique","vod_sport","omtv","foot-GirondinsTvMax","foot-OlTvMax","ms-sport",
	"xxl","dorceltv","private-spice",
	"pink-tv",
	"tele-melody",
	"noTv-Musique","noTv-Internationaux"
]; //chaines accessibles par SAT ASTRA

infoChaine['hotbird'] = [
	"tf1","france2","france3","canalplus","france5","m6","arte","direct8","w9","tmc","nt1","nrj12","lcp","france4","bfmtv","itele","virgin17","gulli","orangesportinfo","tv5monde","france0",
	"abmoteurs","luxetvhd","france24","france24English","france24-arabe","euronews","bbcworld","cnn","dw","mediasat1","tvppolonia",
	"fashiontv","aljazeera","tve","rtpi","raiitalia","tvr-i","channelonerussia","trtint","2m","alaoula","canalalgerie","tv7",
	"tv8montblanc",
	"Orangecinemax","Orangecinehappy","Orangecinechoc","Orangecinenovo","Orangecinegeants","vod",
	"rtl9","ab1","mangas","escales","toutelhistoire","chasseetpeche","encyclopedia","animaux","game-one","motorstv_thematique","sportplus_thematique","jimmy","mcm","boomerang","e-entertainment",
	"action","cinefx","cinepolar",
	"piwi","teletoon","kids-and-co","boing",
	"xxl","dorceltv",
	"tele-melody",
	"noTv-Pink","noTv-Ol","noTv-Om","noTv-Girondins","noTv-Musique","noTv-Internationaux","noTv-bouquetSport"
	
]; //chaines accessibles par SAT HOTBIRD

infoChaine['atlanticbird'] = [
	"tf1","france2","france3","canalplus","france5","m6","arte","direct8","w9","tmc","nt1","nrj12","lcp","france4","bfmtv","itele","virgin17","gulli","orangesportinfo","tv5monde","france0",
	"tv8montblanc",
	"france3-regional","tv8montblanc","nrjparis","normandietv",
	"Orangecinemax","Orangecinehappy","Orangecinechoc","Orangecinenovo","Orangecinegeants","vod",
	"rtl9","ab1","mangas","escales","toutelhistoire","chasseetpeche","encyclopedia","animaux","game-one","motorstv_thematique","sportplus_thematique","jimmy","mcm","boomerang","e-entertainment",
	"action","cinefx","cinepolar",
	"piwi","teletoon","kids-and-co","boing",
	"xxl","dorceltv",
	"tele-melody",
	"noTv-Pink","noTv-Ol","noTv-Om","noTv-Girondins","noTv-Musique","noTv-Internationaux","noTv-bouquetSport"
]; //chaines accessibles par ATLANTIC BIRD


infoChaine['exceptionAdsl']  = [
	"noTv-Pink","noTv-Ol","noTv-Om","noTv-Girondins","noTv-Musique","noTv-Internationaux","noTv-bouquetSport"
]


function initBouqets() {
	$("div.bouquetDisplay").css("display","none");
	$("div.bouquetDisplay.activated").css("display","block");	
	$("div.bouquetDisplay .chaineContainer").hover(survol,quitSurvol);
	filtrerChaineRecepteur();
}



function filtrerChaineRecepteur() {
	if ($("input#adsl").attr('checked') == false) {
		
			$(".chaineContainer").each(function(i) {
				$(this).css("display","none");
			});
	
			$("#formFiltreChaine input").each(function(e) {
				if ($(this).attr('checked') == true) {
					for (chaine in infoChaine[$(this).attr('value')]) {
						var myId = infoChaine[$(this).attr('value')][chaine];
						$("#"+myId).css("display","block");
					};
					
				}
			});
	}
	else {
		$(".chaineContainer").each(function(i) {
			$(this).css("display","block");
			for (chaine in infoChaine["exceptionAdsl"]) {
				var myId = infoChaine["exceptionAdsl"][chaine];
				$("#"+myId).css("display","none");
			};
			
		});
	}
}


function afficheBouquet(leBouquet,myLink) {
	$("#menu_thematique a").removeClass("activatedLink");

	$(myLink).addClass("activatedLink");

	$("#prixOffreAbonnement").empty().html($("div.detailOffre","#"+leBouquet).html());

	$("div.bouquetDisplay.activated").fadeOut(80, function() {
		$("#"+leBouquet).fadeIn('fast', function() { });
		$("div.bouquetDisplay.activated").removeClass('activated');
		$("#"+leBouquet).addClass('activated');
	});
	return false;
}

function survol() {
	$(this).addClass("hovered");
}
function quitSurvol() {
	$(this).removeClass("hovered");
}


