$(document).ready(function() {

$('#sub-menu').hide();

$('.top-menu-link').live("click",function(event){
 event.preventDefault();
 
var which = $(this).attr('id'); 

if (which=='domain-tools-link')
{
var links = '<a href="' +base_url+ 'domain_tools/whois">Domain Whois Lookup</a> | <a href="' +base_url+ 'domain_tools/domain_name_history">Domain History</a> | <a href="' +base_url+ 'domain_tools/nameserver_check">Nameserver Check</a> | <a href="' +base_url+ 'domain_tools/who_owns_what">Who Owns What</a> | <a href="' +base_url+ 'domain_tools/domain_extractor">Domain Extractor</a> | <a href="' +base_url+ 'domain_tools/advanced_lists">Advanced Lists</a> | <a href="' +base_url+ 'domain_tools/masspay_file_generator">Masspay File Generator</a>'
}

if (which=='our-sites-link')
{
var links = 'We are currently in the process of redeveloping our network of websites..'
}


$('#sub-menu').fadeIn('slow').html(links);
$("#sub-menu").delay(5000).fadeOut('slow');




    
});

});
