// icon plt custom
// Version: 0.0.2

$(function () {
    $('.gamesplt').each(function (indexG,elemP){        
        platforms = ['iPHONE','PC','PS2','PS3','PSP','WII','DS','XBOX360'];       
        jQuery.each(platforms, function(indexP, valP) {
            if ( ($(elemP).text().search(valP)) > 0 )  {
                $('.newiconset').eq(indexG).append('<img src="http://static.console-tribe.com/main/images/picons/'+ valP.toLowerCase() +'.png">');
            }
        });       
        $(elemP).empty();
    });
});