$(document).ready(function(){
	var myFile = document.location.toString();
	if (myFile.match('#')) { // the URL contains an anchor
		var myAnchor = 't' + myFile.split('#')[1];
		$('#'+myAnchor).addClass('kast_focus');
	}

	// Hiirega lehvitamise ilustaja
	$('.hoverable').hover (function(){
		$(this).addClass('hover_on');
		$(this).find('.edit_button').show();
		$(this).removeClass('hover_off');
	},function(){
		$(this).addClass('hover_off');
		$(this).find('.edit_button').hide();
		$(this).removeClass('hover_on');
	});//

});