function slide(path, width) {
	$(path).animate({
		'width': width + 'px'
	}, 1000);
}

function homePageSlipSlide() {
	$('#onlyEmail a.viewMore').click(function() {
		$('#needMore').hide().css('left', '0');
		$('#searchPersonal').hide().css('left', '0');
		$('#searchContainer').fadeOut(500, function() {
			slide('#tbLeft', 224);
			slide('#tbLeft div.middle', 200);
		}); 
		$('#onlyEmail').fadeOut(500, function() {
			slide('#tbRight', 588);
			slide('#tbRight div.middle', 568);
		});
		setTimeout('$("#needMore").fadeIn(500); $("#searchPersonal").fadeIn(500);', 1500);
		return false;
	});
	$('#needMore a.viewMore').click(function() {
		$('#needMore').fadeOut(500, function() {
			slide('#tbLeft', 588);
			slide('#tbLeft div.middle', 568);
		});
		$('#searchPersonal').fadeOut(500, function() {
			slide('#tbRight', 224);
			slide('#tbRight div.middle', 200);
		});
		setTimeout('$("#searchContainer").fadeIn(500); $("#onlyEmail").fadeIn(500).css("width", "150px");', 1500); 
		return false;
	});
}