$(function() {
	$(".img_apresentacoes").bind('mouseenter', function(event) {
		$(this).find(".legendas").stop().fadeIn();
	}).bind('mouseleave', function(event) {
		$(this).find(".legendas").stop().fadeOut();
	});
	
	var elementos = '#home .videos li a, .bt_language a'
    $(elementos).click(function(e){e.preventDefault()});
	
	$("#home .videos li a").click(function(){
	    $("#home .videos li").removeClass('mini_videos_active').addClass('mini_videos');
	    $(this).parent().removeClass('mini_videos').addClass('mini_videos_active');
	    $("#home iframe.videos").attr('src', $(this).attr('href'));
	});
	
	$(".bt_language a").click(function(){
	    
	});
	
	$('.bt_language a').click(function() {
      $('#id_languages').submit();
    });
    
    
	
});
