$(document).ready(function(){
	$(".fancybox").fancybox();
	$("#video").click(function() {
		$.fancybox({
				'padding'		: 0,
				'overlayOpacity' : 0.8,
				'overlayColor'  : '#000',
				'autoScale'		: false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'title'			: this.title,
				'width'		: 680,
				'height'		: 495,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'			: 'swf',
				'swf'			: {
					'wmode'		: 'transparent',
					'allowfullscreen'	: 'true'
				}
			});
	
		return false;
	});
	tableColors();
});


function tableColors(){
		reds = ['G.A.G.', 'G.A.G', 'PUMP', 'FIT-BOXE', 'TOTAL BODY', 'STEP & TONE', 'FUNCTIONAL CAMP', 'FUNCTIONAL CAMP \'45', 'FUNCTIONAL CAMP avanz', 'SPINN-BIKE 45\'', 'SPINN-BIKE senior', 'SPINN-BIKE 45\'', 'ACQUA GYM 45\'', 'ACQUA TONIC 45\'', 'ACQUA G.A.G. 45\''];
		yellows = ['IN FORMA', 'POSTURAL GYM', 'ACQUA SOFT 45\'', 'PILATES BASE 45\'', 'POWER STRETCH 45\'', 'YOGAFLEX 45\'', 'PILATES INTERM. 45\'', 'DANZA release tec', 'UNDER BODY 30\'', 'UPPER BODY 30\''];
		$.each($("table td"), function(i,e){
			value = $.trim($(this).text());
			if($.trim(value) != '' && value != 'DOMENICA'){
				if (jQuery.inArray(value, reds) != -1){
					$(this).addClass("red");
				}
				else if (jQuery.inArray(value, yellows) != -1){
					$(this).addClass("yellow");
				}
				else{
					$(this).addClass("green");
				}
			}
		});
		
		$.each($("table tr"), function(i,e){
			$(this).find("td:first").css("color", "#fff");
		});
		$x = 0;
		$.each($("table tr td"), function(i,e){
			if($x%2)
			//$(this).remove();
			
			$x++;
		});


}

/*
		switch (value){
			case "G.A.G":
			break;	
			case "G.A.G.":
				$(this).addClass("red");
			break;	
			case "PUMP":
				$(this).addClass("red");
			break;	
			case "FIT-BOXE":
				$(this).addClass("red");
			break;	
			case "TOTAL BODY":
				$(this).addClass("red");
			break;	
		}
	});
*/

