jQuery.noConflict();

jQuery(document).ready(function() {	
	jQuery(".fejsbol").mouseover(function(){
		jQuery(".fejsbol").stop(true, false).animate({right:"0"},"medium");
	}).mouseout(function(){
		jQuery(".fejsbol").stop(true, false).animate({right:"-215"},"medium");
	});
});

