$(function(){
	$('#c a')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0 -45px)"}, {duration:300})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:300})
		})
});
			$(function(){ 
				$('a.normalTip').aToolTip();
				
				
				$('a.fixedTip').aToolTip({
		    		fixed: true
				});
				
				$('a.clickTip').aToolTip({
		    		clickIt: true,
		    		tipContent: 'Hello I am aToolTip with content from the "tipContent" param'
				});		
				
				$('a.callBackTip').aToolTip({
					clickIt: true,
					onShow: function(){alert('I fired OnShow')},
					onHide: function(){alert('I fired OnHide')}
				});		
				
				
			}); 

$(document).ready(
function() {
$(".fade").fadeTo("fast", 1.0);
$(".fade").hover(
function() { $(this).fadeTo("slow", 0.4); },
function() { $(this).fadeTo("slow", 1.0); }
);
}
);
