jQuery.noConflict();
jQuery(document).ready(function() {
	jQuery("#fbk")
		.mouseenter(function() {jQuery(this).stop().animate({right: 0}, "normal");})
		.mouseleave(function() {jQuery(this).stop().animate({right: -321}, "normal");});
});
	
