/*hides all icons and signature images that are in JPEG format*/
/*can unhide them with mouseover*/
/*gamerX1011*/

@-moz-document domain("boards.ign.com"), domain("forums.ign.com"), domain("betaboards.ign.com") {

.boards_thread_user_profile_icon_80 img[src$=".jpg"],
.boards_thread_user_profile_icon_120 img[src$=".jpg"],
.boards_thread_post > img[src$=".jpg"]:last-child {
opacity: 0;
}

.boards_thread_user_profile_icon_80 img[src$=".jpg"]:hover,
.boards_thread_user_profile_icon_120 img[src$=".jpg"]:hover,
.boards_thread_post > img[src$=".jpg"]:last-child:hover {
opacity: 1;
}

}