function scrollMedias (direction) {
	var selector = $('#main>.col-2>.col-2-2>.box.medias>.slide>ul');
	var currentPosition = parseInt($(selector).css('margin-left'));
	var newPosition = parseInt(currentPosition + (-1 * direction * 54));
	
	if (selector.is(':animated')) {
		return false;
	}
		
	if (newPosition > 0 || newPosition <= parseInt(- selector.width()+315-54+9)) {
		return false;
	}
	
	selector.animate({ 'margin-left': newPosition + 'px' }, 200);
}

$(function () {			
	$('#main>.col-2>.col-2-2>.box.medias>.arrow-w').click(function () { scrollMedias(-1); });
	$('#main>.col-2>.col-2-2>.box.medias>.arrow-e').click(function () { scrollMedias(1); });
	
	$('#main>.col-2>.col-2-2>.box.medias>.slide>ul>li').click(function () {
		var infos = $(this);
		infos
			.siblings('li').css({ 'border' : '1px solid #fff' })
			.end()
			.css({'border' : '1px solid #5e2f90' });
		$('#main>.col-2>.col-2-2>.box.medias>.media>.m-cont>.m').fadeOut(150, function () {
			$(this).children('*').remove();
			if (infos.children('[rel=id_video]').size() != 0) {	
				var id_video = infos.children('[rel=id_video]').text();
				var html;
				/*
				var html = ''
					+ '<object rel="mm" width="320" height="230"><param name="allowfullscreen" value="true" />'
					+ '	<param name="wmode" value="transparent" />'
					+ '	<param name="allowscriptaccess" value="always" />'
					+ '	<param name="movie" value="http://vimeo.com/moogaloop.swf?autoplay=1&amp;clip_id=' + id_vimeo + '&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=2bace2&amp;fullscreen=1" /> '
					+ '	<embed wmode="transparent" src="http://vimeo.com/moogaloop.swf?autoplay=1&amp;clip_id=' + id_vimeo + '&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=2bace2&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="320" height="230"></embed>'
					+ '</object>';
				*/
				if ( $.browser.msie ) {
					html = "<"+"script src='/flash/osflvplayer/AC_RunActiveContent.js' language='javascript'></"+"script>\n"

					+ '<script language="javascript">'
					+ "AC_FL_RunContent('codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0', 'width', '330', 'height', '230', 'src', ((!DetectFlashVer(9, 0, 0) && DetectFlashVer(8, 0, 0)) ? '/flash/osflvplayer/OSplayer' : '/flash/osflvplayer/OSplayer'), 'pluginspage', 'http://www.macromedia.com/go/getflashplayer', 'id', 'flvPlayer', 'allowFullScreen', 'true', 'allowScriptAccess', 'always', 'movie', ((!DetectFlashVer(9, 0, 0) && DetectFlashVer(8, 0, 0)) ? '/flash/osflvplayer/OSplayer' : '/flash/osflvplayer/OSplayer'), 'FlashVars', 'movie=/datas/video-"+id_video+".flv&btncolor=0x333333&accentcolor=0x31b8e9&txtcolor=0xdddddd&volume=30&autoload=on&autoplay=on&vTitle=&showTitle=no');"
					+ '</script>'
					
					+ '<div style="background-color:#000;"><object width="330" height="230" id="flvPlayer">'
					+ '<param name="allowFullScreen" value="true">'
					+ '<param name="allowScriptAccess" value="always">'
					+ '<param name="wmode" value="transparent">'
					+ '<param name="movie" value="/flash/osflvplayer/OSplayer.swf?movie=/datas/video-'+id_video+'.flv&btncolor=0x333333&accentcolor=0x31b8e9&txtcolor=0xdddddd&volume=30&autoload=on&autoplay=on&vTitle=&showTitle=no">'
					+ '<embed src="/flash/osflvplayer/OSplayer.swf?movie=/datas/video-'+id_video+'.flv&btncolor=0x333333&accentcolor=0x31b8e9&txtcolor=0xdddddd&volume=30&autoload=on&autoplay=on&vTitle=&showTitle=no" width="330" height="230" allowFullScreen="true" wmode="transparent" type="application/x-shockwave-flash" allowScriptAccess="always"></embed>'
					+ '</object></div>';
				}else{
					html = '<div style="background-color:#000;"><object width="330" height="230" id="flvPlayer">'
					+ '<param name="allowFullScreen" value="true">'
					+ '<param name="allowScriptAccess" value="always">'
					+ '<param name="wmode" value="transparent">'
					+ '<param name="movie" value="/flash/osflvplayer/OSplayer.swf?movie=/datas/video-'+id_video+'.flv&btncolor=0x333333&accentcolor=0x31b8e9&txtcolor=0xdddddd&volume=30&autoload=on&autoplay=on&vTitle=&showTitle=no">'
					+ '<embed src="/flash/osflvplayer/OSplayer.swf?movie=/datas/video-'+id_video+'.flv&btncolor=0x333333&accentcolor=0x31b8e9&txtcolor=0xdddddd&volume=30&autoload=on&autoplay=on&vTitle=&showTitle=no" width="330" height="230" allowFullScreen="true" wmode="transparent" type="application/x-shockwave-flash" allowScriptAccess="always"></embed>'
					+ '</object></div>';
				}
			}
			
			else {
				 var html = '<img src="/datas/' + infos.children('[rel=hash]').text() + '-w330h230.jpg" alt="' + infos.children('[rel=title]').text() + '" />';
			}
		
			$(this).parent().siblings('.title').text(infos.children('[rel=title]').text());
			$(this).append(html).fadeIn(250);
		});
		
	});
});
