jQuery.noConflict();
jQuery(document).ready(function() {
    var startingTop; var jumpDistance=5; var speed=100;
	startingTop = jQuery("a.facebook").position().top; 
	jQuery("a.facebook, #block-node-syndicate").hover(
			function(){ jQuery(this).css({cursor:'pointer'}); jQuery(this).stop().animate({opacity: 0.75, top:'-='+jumpDistance}, speed); },
			function(){ jQuery(this).animate({opacity: 1.0, top:startingTop}, speed); }
    );
	jQuery('.whatshappening').colorbox({iframe:false, innerWidth:835, innerHeight:611, scrolling:false});
	jQuery('#header #edit-submit').remove(); jQuery('#search-block-form .container-inline').append('<a href="#" title="Search" id="btn_search">Search</a>');
	jQuery('#btn_search').click(function() { jQuery('#btn_search').parent('form').submit(); return false; });
});
