$(document).ready(function () { 
	$('#chat').click(function(){
		$('#box_chat').slideToggle();
	})


    $('a.faixa_hover_menu').hide();
    $('div.box_images').hover(
        function()
        {
                $('a.faixa_hover_menu', $(this)).fadeIn(220);
        },
        function()
        {
                $('a.faixa_hover_menu', $(this)).fadeOut(50);
                
        }
    );
});
