
$(function(){

        $(".soc_media_list").hover(function(){
            $(this).addClass('hover');
            if($.browser.msie) {
                var location = document.getElementById('location');
                if(location) {
                    location.style.visibility='hidden';
                }
            }
        },
        function(){
            $(this).removeClass('hover');
            if($.browser.msie) {
                var location = document.getElementById('location');
                if(location) {
                    location.style.visibility='visible';
                }
            }
        });

});

