jQuery.noConflict();

jQuery(function() {
	jQuery('#facebook').hover(
		function() { jQuery(this).animate({ "width" : "300px" }) }, 
		function() { jQuery(this).animate({ "width" : "60px" }) }
	);
});
