﻿jQuery(document).ready(function() {    
    $('.indexpointview, .speakerview').css('opacity', 0.8).each(function() {
        this.onmouseover = function() {
            $(this).animate({ 'opacity': 1 }, { "duration": "fast", "queue": "false" });
            $(this).css({ "cursor": "pointer" });
        };
        this.onmouseout = function() {
            $(this).animate({ 'opacity': 0.8 }, { "duration": "fast", "queue": "false" });
            $(this).css({ "cursor": "default" });
        };
    });    
});
