function myalert(){ 

var myTips = new Tips($$('c'), {className: 'tooltip', 

	initialize: function(){
		this.tip.setStyle('opacity', 0);
	},
	onShow: function () {		
		this.tip.fade('in');
	},
	onHide: function() {		
		this.tip.fade('out');	
	}	
});


var myTips = new Tips($$('c'), {className: 'tooltip', 

	initialize: function(){
		this.tip.setStyle('opacity', 0);
	},
	onShow: function () {		
		this.tip.fade('out');	
	},
	onHide: function() {		
		this.tip.fade('out');	
	}
	
});

$each($$('a','input','textarea'), function(el) {  
         var original = el.getStyle('color');  
         var morph = new Fx.Morph(el,{ 'duration':'300', link:'cancel' });  
         el.addEvents({  
             'mouseenter' : function() { morph.start({ 'color':'#ffffff' }) },  
             'mouseleave' : function() { morph.start({ 'color': original }) }  
         });  
     });  


$each($$('img.postimg','.post-content img','.form-input input','input#s','#comment_form input','textarea'), function(el) {  
         var original = el.getStyle('border');  
         var morph = new Fx.Morph(el,{ 'duration':'300', link:'cancel' });  
         el.addEvents({  
             'mouseenter' : function() { morph.start({ 'border':'1px solid #333333' }) },  
             'mouseleave' : function() { morph.start({ 'border': original }) }  
         });  
     });  

};

window.addEvent( 'domready', myalert );


