// JavaScript Document
jQuery(document).ready(function() {

	th_var = 0;
	th_right = jQuery("#fb_main").css('right');
	jQuery("#fb_button").click(function() {
		if (th_var == 0) {
			jQuery("#fb_main").animate( {
				right : '0'
			}, 500, function() {
				th_var = 1;
			});
		} else {
			jQuery("#fb_main").animate( {
				right : '' + th_right + ''
			}, 500, function() {
				th_var = 0;
			});
		}
	});

});
