// ----- 1/20/10 --- Written by jerbmann ------- // $(document).ready(function(){ $('#catBreedCatalog_menuList').hide(); //Show all breeds menu at bottom of page $(".allBreedsMenu").click(function(){ $(catBreedCatalog_menuList).slideToggle('normal'); $(this).text($(this).text() == 'View all breeds' ? 'Hide all breeds' : 'View all breeds'); }); });