/* used for computer packages to style the specs table by making it zebra rows.*/
    $(function(){
        $('#specsTable').css("background-color","transparent");
        $('table tr:nth-child(even)').addClass("striped");
    });

