$(document).ready(function(){ $(".primary div.creatortype").hide(); $("#creatortypemenu li.showauthorsandillustrators").hide(); $(".primary div#authorsandillustratorslist").show().load("http://www.bdb.com.au/authorsandillustrators/list/creatorlist-creatortype-authorsandillustrators.php"); $("ul#creatortypemenu li a").click(function() { $("div.creatortype").hide(); return false; }); $(".showauthors a").click(function() { $("#authorslist").load("http://www.bdb.com.au/authorsandillustrators/list/creatorlist-creatortype-authors.php"); $("#authorslist").fadeIn('200'); $("#creatortypemenu li.showauthorsandillustrators").fadeIn('200'); return false; }); $(".showillustrators a").click(function() { $("#illustratorslist").load("http://www.bdb.com.au/authorsandillustrators/list/creatorlist-creatortype-illustrators.php"); $("#illustratorslist").fadeIn('200'); $("#creatortypemenu li.showauthorsandillustrators").fadeIn('200'); return false; }); $(".showauthorsandillustrators a").click(function() { $("#authorsandillustratorslist").load("http://www.bdb.com.au/authorsandillustrators/list/creatorlist-creatortype-authorsandillustrators.php"); $("#authorsandillustratorslist").fadeIn('200'); $("#creatortypemenu li.showauthorsandillustrators").fadeOut('100'); return false; }); });