jQuery.noConflict();
jQuery(document).ready(
function()
{
	jQuery("#fb").mouseenter(function()
	{
		jQuery(this).stop().animate({right: 0}, "normal");
	}).mouseleave(function()
	{
		jQuery(this).stop().animate({right: -205}, "normal");
	});;
	
	jQuery(".trigger").click(function(){
		jQuery(".panel").toggle("fast");
		jQuery(this).toggleClass("active");
		return false;
	});
});
