$(document).ready(function(){
	$(".showlastevents").click(function(){
		$("#HideLast").slideToggle("slow");
		$(this).toggleClass("showlastevents_hide");
		return false;
	});
	$(".afisha_text a").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "-111"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-126"}, "fast");
	});
	$(".represents_content a").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "-111"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-126"}, "fast");
	});
});
