function fbs_click() {u=location.href;t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}

$(document).ready(function() {

	$('a.up').click(function() {
		$('#form_connect').animate({
    		top: '+=162'
  		}, 500, function() {
    		return false;
  		});

		$(".up").toggle();
		$(".down").toggle();
		return false;

	});
	$('a.down').click(function() {
		$('#form_connect').animate({
    		top: '-=162'
   
  		}, 500, function() {
    		return false;
  		});	
	
		$(".down").toggle();
		$(".up").toggle();
		return false;
	});

	
	var left_height_light = $("#left").height() ; 
	var right_height_light = $("#right").height() ;
	var respond = $("#respond").height() ;
	
	if(right_height_light < left_height_light){
		var diff = left_height_light - right_height_light; 
		
		$("#respond").css("height",respond + diff)
	}
	
	
});