$(document).ready( function() {

  if ($("body.not-logged-in").length)
    $("#footer-inner").hover(
	  function() { $(this).css("background","#DDD"); $(this).dblclick(
	    function() { document.location = base_path + "user/wind"; }
	  )},
	  function() { $(this).css("background","#FFF") }
    );
    
  $(".to_top").find("h2").goToTop();

  $(".node-type-programs > .node-inner").find("h3").goToTop();
	

} );

(function($) {
	$.fn.goToTop = function(options) {
		var opts = $.extend({}, $.fn.goToTop.defaults, options);
		var htmlToTop =  '<a href="#'+ opts.anchorTopName+ '" class="'+ opts.linkClass +'" style="'+ opts.linkStyle +'">'+ opts.label +'</a>';
		$(this).prepend( htmlToTop );
	}
		
	//
	// plugin defaults
	//
	$.fn.goToTop.defaults = {
		label: 'to top',
		linkClass: 'to_top_link',
		anchorTopName: 'top',
		linkStyle: 'float:right; cursor:pointer; text-decoration:underline;'
	};
})(jQuery);