jQuery(document).ready(function() {
	
	jQuery("#connectLink").click(function(){
	
		jQuery('#homepopup').animate({
			height: 'toggle'
		}, 200, function() {});
		
    });
	
	jQuery("#closehomepopup").click(function(){
		jQuery('#homepopup').animate({
			height: 'toggle'
		}, 200, function() {});
    });

});
