﻿$(document).ready(function() {
    $(".companyname").click(function(event) {
        $(this).siblings().toggle("fast");
    });
});


