$ = jQuery.noConflict();

function check_mail(){
	var re = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
	if( !re.test($('#newsl_fld').val())){
		alert('Adresse invalide !');
		return false;	
	}else{
		return true;	
	}
}

// RANDOM

function aleatoire(i) {
	if (!i) { i = 100 ; }
	return(Math.round(Math.random()*i)) ;
}


$(document).ready( function() {
	
	// PHOTOS > Galerie
	
	if($('#auteursPhotos').length){

		var randStartNum = parseInt(($('.unAuteur').length)-1);
		var randStart = aleatoire(randStartNum);
	
		$('.detailsPhotos').hide();
		
		$('#details_'+ randStart +'').fadeIn();
		$('#auteur_'+ randStart +'').addClass('active');
		
		$('.unAuteur').live('click', function(){
			if($(this).hasClass('active')){
			}else{
				$('.unAuteur.active').removeClass('active');
				var targetAuteur = $(this).attr('id').replace('auteur_','details_');	
				$(this).addClass('active');
				var targetAuteurFormat = "#" + targetAuteur;
				$('.detailsPhotos').fadeOut('fast');
				$(targetAuteurFormat).fadeIn('slow');
			}
		});
	}
	
	// VIDEOS > Galerie

	$('.uneCatVideo').hide();
	
	$('.uneCat').eq('1').addClass('catActive');
	$('.uneCatVideo').eq('1').fadeIn();

	$('.uneCat').live('click', function(){
		if($(this).hasClass('catActive')){
		}else{
			$('.uneCat.catActive').removeClass('catActive');
			var targetCat = $(this).attr('id').replace('cat_','uneCat_');	
			$(this).addClass('catActive');
			var targetCatFormat = "#" + targetCat;
			$('.uneCatVideo').fadeOut('fast');
			$(targetCatFormat).fadeIn('slow');
		}
	});
	

	// GLOBAL > Lightboxes
	
	$('#voir_le_clip').colorbox({ iframe:true ,height:'475px' ,width:'954px' ,fixed: false ,top: '108px' ,opacity: 0.95 ,scrolling: false ,onLoad:function(){ $(window).scrollTop(0); } ,onOpen:function(){ $(window).scrollTop(0); } });

	$('.titreVideo').colorbox({ width:"640px", height:"360px", iframe:true, fixed: true, opacity: 0.95, scrolling: true });
	
	$('.imgVideo').colorbox({ width:"640px", height:"360px", iframe:true, fixed: true, opacity: 0.95, scrolling: true });	
	
	$('#albumZoom').colorbox({ width:"701px", scrolling: true, fixed: true});

	$('.uneVignette').colorbox({scrolling: true, fixed: true});	

	$('.voir_mentions_legales').colorbox({
		iframe:true,width:'1000px',height:'600px',scrolling: true, fixed: true
	});
	$('.voir_credits').colorbox({
		inline: true, href: "#creditsDiv", title:false,  width:'600px',scrolling: true, fixed: true
	});

	$('.imgAlbum').bind('click', function(){
		var target = $(this).parent().attr('id').replace('unAlbum_','albumDetail_');
		var targetFormat = '#' + target;
		$.colorbox({ width:"600px", title:false, opacity: 0.95, inline:true, scrolling: true, fixed: true, href:targetFormat });
	});

	$('.titreAlbum').bind('click', function(){
		var target = $(this).parent().attr('id').replace('unAlbum_','albumDetail_');
		var targetFormat = '#' + target;
		$.colorbox({ width:"600px", title:false, opacity: 0.95, inline:true, scrolling: true, fixed: true, href:targetFormat });
	});	
	
	// HOME > Carousel

	$('#newsCarousel').jcarousel({
		visible: 1,
		scroll: 1,
		vertical: false
	});
	
	
	// Ce que j'aime
	
	/*$('.menu_cate_jaime li').click(function(){
		var class_current = $(this).children('span').attr('id');
		$('.content_cate_jaime .cate_jaime').fadeOut(0);
		$('.menu_cate_jaime li').removeClass('active');
		$(this).addClass('active');
		$('.content_cate_jaime .cate_jaime.'+class_current).fadeIn('slow');
		
	});*/	
	
	
});
