 $(document).ready(function() {
     var exp = $('.expand');
     exp.css({'color':'#86a40b','text-decoration':'underline'});
     var divexp = $('.divexpand');
     divexp.css('display','none');
    exp.hover(function() {
        $(this).css('cursor','pointer');
    }, function() {
        $(this).css('cursor','auto');
    });

    exp.click(function() {
        $('div',$(this).parent()).slideToggle('slow');
     });

   
});
