/** 
* @projectDescription France 2 & France 3, versions 2.0
*
* @author	Mururoa Project Team
* @version	0.1 
*/

// ---------------------------------------------------------------------------------------------- \\
// Jquery init event
// ---------------------------------------------------------------------------------------------- \\
var handleTextLink = function() {
	var that = this;
	$.get(
		 $(this).attr('href')
		,function(data) {
			$(that)
				.unbind('click')
				.popin(
					 $(data)
					,{
						bgColor: 'white'
						,masque: {
							css: {
								'z-index': 9000
							}
							,animIn: 'fadeIn'
						}
					}
				)
				.click(function() {
					$(this).trigger('popinShow');
					return false;
				});
	});
	return false;
};

$(document).ready(function()
{
	handleComments("#lastInfoNewsBlk1");

	handleHiddenContents("#scrollableNews01");
	handleHiddenContents("#scrollableNews02");

	handleSondage(7, "info", "ColDroite");

	$("a.popin_quiz").click(handleTextLink);

	if(typeof $.fn.media == 'function') {
		$('.media').media(
		{ 
			width:		384, 
			height:		357, 
			autoplay:	true,
			caption:	false
		});
	}
});

