$(document).ready(function(){
	var aux = 0;
	var new_h = 0;
	$("a.float_open").click(function(){
		aux = $(this).parent().children('.float_div').height();

		new_h = 0 - 40 - aux;

		$(this).parent().children('.float_div').css('top', new_h + 'px');
		$(this).parent().children('.float_div').fadeIn("slow");									   
	});
	
	$(".close_div").click(function(){
		$(this).parent().parent().fadeOut("fast");									   
	})
})
