$(document).ready(function () {
	//Красивые Alert'ы
	window._alert = window.alert;
	window.alert = function(message) {
		$.pnotify({
			pnotify_title: 'Системное сообщение',
			pnotify_text: message,
			pnotify_delay: 5000
		});
	};

    $('.all_ban').hover(
        function(){
            $('.ban_grey').show();
            $('.ban_grey', this).hide();
            $(this).addClass('cur');
        },
        function(){
            $('.ban_grey').hide();
            $(this).removeClass('cur');
        }
    );
    
});
