function piekne_profile()
{
	jQuery('div.piekny-profil').hover(function(){
		jQuery(this).find('#opis-najechany').stop().fadeTo(200,1.0);
		jQuery(this).find('.premium-gwiazdka').stop().fadeTo(200,0.0);
	}, function(){
		jQuery(this).find('#opis-najechany').stop().fadeTo(200,0.0);
		jQuery(this).find('.premium-gwiazdka').stop().fadeTo(200,1.0);
	});
}

jQuery(document).ready(function(){
	piekne_profile();
});
