/*
	Rémy Savard [iXmedia.com]
	global.js - Scripts
	Dernière modification: 21 septembre 09
------------------------------------------------- */
$(document).ready(function(){

/***************************************************************************************
	[ Tele ] ==> Colorbox
***************************************************************************************/
	if($('#tele').length > 0){
	
		// 640x480
		$(".videos .video1").colorbox({
			iframe: true,
			width: 668,
			height: 557,
			opacity: 0.8,
			close: 'Fermer'
		});
		
		//480x360
		$(".videos .video2").colorbox({
			iframe: true,
			width: 508,
			height: 437,
			opacity: 0.8,
			close: 'Fermer'
		}); 
		
		//640x360
		$(".videos .video3").colorbox({
			iframe: true,
			width: 668,
			height: 437,
			opacity: 0.8,
			close: 'Fermer'
		}); 
	
	}

});