$(document).ready(function() {

    $('#home #c2 a').bind('mouseenter', function() {
        $(this).children('img.hide').fadeIn();
    }).bind('mouseleave', function() {
        $(this).children('img.hide').fadeOut();
    });
	
	function loopfade(el) {
		el.fadeIn().fadeOut();
		window.setTimeout(loopfade(el), 2000);
	}
	
//	loopfade($('#home #c2 a#bt_video').children('img.hide'));

	for (var i = 0; i < 10; i++) {
		$('#home #c2 a#bt_video').children('img.hide').fadeIn(500).fadeOut(500);
	}
/*
    $('#visuel').slideshow({
        timeout: 3000,
        type: 'random'
    });
*/
});
