// JavaScript Document
$(document).ready(function(){
    $('.topmenu ul li').hover(
        function() {
			$(this).addClass("fuck_IE");
            $(this).find('div').show();
        },
        function() {      
            $(this).find('div').hide();
			$(this).removeClass("fuck_IE");
        }
    );
	$('.userplace .enterplace').hover(
        function() {
            $(this).find('div').show();
        },
        function() {      
            $(this).find('div').hide();
        }
    );
	$('.userplace .authorized').hover(
        function() {
            $(this).find('div.popup').show();
            $(this).find('div.user_fish').hide();
        },
        function() {      
            $(this).find('div.popup').hide();
            $(this).find('div.user_fish').show();
        }
    );
});


