﻿				$(function() {
					$('a#buttonxvx1').click(
						function() {
							$('#footpanel').animate({bottom: '-30'}, 'slow'),
							$('#footpanel2').animate({bottom: '0'	}, 'slow');
						}
					);
					$('a#buttonxvx2').click(
						function() {
							$('#footpanel').animate({bottom: '0'}, 'slow'),
							$('#footpanel2').animate({bottom: '-30'}, 'slow');
						}
					);
				});
