window.addEvent('domready', function() {

var pozornost = $('pozornost');
var action = $('action');

	pozornost.addEvent('mouseenter', function(){
		pozornost.tween('width', 350);
		/*pozornost.tween('height', 100);*/
    $('action').setStyle('display', 'inline');
		return false;  //alternative syntax to stop the event
	});



	pozornost.addEvent('mouseleave', function(){
		fBack ();		
		return false;  //alternative syntax to stop the event
	});


var fBack = function(){
		pozornost.tween('width', 62);
    /*pozornost.tween('height', 10);*/
    $('action').setStyle('display', 'none');
};



});

