$(document).ready(function () {
    $('#animjq').click(function(){
        $('.animjq').animate({
        width: '200px',
        height: 'toggle'
        });
    });

    $('.jqhid').hover(
        function () {
            var id = "." + $(this).attr('id');
            //alert(id);
            $(id).show();
        },
        function () {
            var id = "." + $(this).attr('id');
            $(id).hide();
        }
    );
});
