/***********************************************
* Drop down menu w/ description- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

//1) CUSTOMIZE TEXT DESCRIPTIONS FOR LINKS ABOVE
var thetext1=new Array()
thetext1[0]="Select a business network, and click GO to visit the page"
thetext1[1]="An online directory of advisers who help budding entrepreneurs."
thetext1[2]="ArtBreak is an artist community for sharing and selling artwork."
thetext1[3]="Blogtronix promotes corporate social networking, Enterprise 2.0 and wikis."
thetext1[4]="Commutal is an online sharing platform for businesses to create media rooms, participate in groups and share event happenings with one another."
thetext1[5]="An online working community for global businesses."
thetext1[6]="Connectbeam offers social networking designed especially for corporate users."
thetext1[7]="An interior designer community enabling users to post items for sale and for exchange."
thetext1[8]="A site for working professionals to find online assistants."
thetext1[9]="An invitation-only career community for professionals.	"
thetext1[10]="A fast growing business networking community serving the corporate world. <BR>It provides users with a one-stop-shop network to market their businesses."
thetext1[11]="iKarma is a specialist in providing customer feedback for organizations and professionals."
thetext1[12]="ImageKind is a community and marketplace for professional artists."
thetext1[13]="Jambo lets you connect with your neighborhood friends."
thetext1[14]="An online business card networking directory for users to establish contacts with each other. <BR>Each business card is listed with an email id and a contact number.	"
thetext1[15]="Konnects enables members to create their own professional networking communities.	"
thetext1[16]="A professional social networking community for lawyers."
thetext1[17]="LinkedIn is a professional social networking website for business people, the most popular business network in the world. Some aspects of it are free, but many are paid. <BR><font color=\"red\"><B>Search here first!</b></font>"
thetext1[18]="mediabistro.com is for professionals in content or creative industry."
thetext1[19]="Pairup connects business travelers thereby helping them to travel together."
thetext1[20]="Plaxo is a business networking database - they are trying to catch up with LinkedIn"
thetext1[21]="A site for establishing new connections and growing networks. <BR>Connections for jobs, building career and making sales."
thetext1[22]="Spoke offers access to business network of over 40 million people worldwide."
thetext1[23]="Visible Path helps organizations integrate social networking into their existing tools."
thetext1[24]="A private label social network with personal spaces and user groups."
thetext1[25]="XING is a networking directory of business contacts that allows users to connect with each other."


/// You may define additional text arrays if you have multiple drop downs:



// Now, see 2) below for final customization step

function displaydesc(which, descriptionarray, container){
if (document.getElementById)
document.getElementById(container).innerHTML=descriptionarray[which.selectedIndex]
}

function jumptolink(what){
var selectedopt=what.options[what.selectedIndex]
if (document.getElementById && selectedopt.getAttribute("target")=="newwin")
window.open(selectedopt.value)
else
window.location=selectedopt.value
}

//2) Call function displaydesc() for each drop down menu you have on the page
//   This function displays the initial description for the selected menu item
//   displaydesc(name of select menu, name of corresponding text array, ID of SPAN container tag):
//   Important: Remove the calls not in use (ie: 2nd line below if there's only 1 menu on your page)

displaydesc(document.form1.select1, thetext1, 'textcontainer1')

