//************This Header Must Remain Attached ********** You May Not Remove This Header******
//Image Link Displayer© by John Farquharson daworxwebdesign@yahoo.com                        *
//Completed Sat Nov 23 MMI @ 12:26 A.M. EDST Copyright DaWorx Web Design® MMII (2002)        *
//Author continues to hold all rights to ownership of this JavaScript - copyright 2002 (MMII)*
//Tested in Internet Explorer 8.0 / Opera 6.0		                        	     *
//************This Header Must Remain Attached ********** You May Not Remove This Header******
document.write("<br><form name='the_form' action=''><table border='1' bordercolor='#000000' cellpadding='0' cellspacing='0' width='200' align='left'><tr><td bgcolor='#000000' background=''><center><font size='1' face='verdana' color='#FFFFFF'>LittleDarlinsMusicWorks.com<br>CD Catalog Box</font><hr></center></tr></td><tr><td bgcolor='#000000' background='none'>");
document.write("<center><a href='javascript:theLink();' onMouseOver='clearTimeout(my_timeout), status=my_link[index];return true;' onMouseOut='spinMe(); status=\" \"'><img name='the_image' src='images/loading_pw.gif' width='200' height='200' border='0' alt='CLICK IMAGE To View Information For This CD!'></a><br>");
document.write("</center></tr></td><tr><td bgcolor='#000000' background=''>");
document.write("<center><input type='button' name='start' value='Re-Start' onClick='spinMe();'><input type='button' name='stop' value='Stop' onClick='clearTimeout(my_timeout);'><input type='button' name='view_songs' value='<View CD>' onClick='theLink();'></center>");
document.write("<center><hr><font size='1' face='verdana' color='#FFFFFF'>LittleDarlinsMusicWorks.com<br>CD Catalog Box</font></center></tr></td></table>");
document.write("<img src='images/right_arrow.gif' align='absmiddle'><input type='text' name='the_status' size='84' style='font-weight:bold; background:transparent; border:none; font-family:verdana; font-size:12px' readonly onClick=\"theLink();\"' onFocus='the_status.blur();' class='xlink' onMouseOver='clearTimeout(my_timeout);' onMouseOut='spinMe();' style='text-decoration:underline;' title='CLICK To View Information For This CD!'></form>");

var my_link = [ 
"lcart/louis-prima-classic-album-collection-p-40.html", 
"lcart/jo-stafford-blues-in-the-night-p-39.html", 
"lcart/julie-london-greatest-hits-p-38.html", 
"lcart/doo-wop-classics-various-artists-p-31.html", 
"lcart/doo-wop-greats-various-artists-p-29.html", 
"lcart/doo-wop-jukebox-various-artists-p-30.html", 
"lcart/number-one-hits-various-artists-p-35.html", 
"lcart/one-hit-wonders-various-artists-p-36.html", 
"lcart/teenagers-in-love-various-artists-p-37.html", 
"lcart/thats-rock-and-roll-various-artists-p-33.html", 
"lcart/the-diamonds-25-golden-hits-p-28.html", 
"lcart/the-duprees-best-of-p-34.html", 
"lcart/the-sixties-all-original-artists-p-32.html", 
"lcart/country-gospel-various-artists-p-43.html", 
"lcart/firehouse-five-2-tiger-rag-p-41.html", 
"lcart/preservation-hall-dixieland-jazz-band-p-42.html" 




 ];

var my_image = [ 
"images/louis_prima_classic_album_collection.jpg", 
"images/jo_stafford_cd.jpg", 
"images/julie_london_cd.jpg", 
"images/doo_wop_classics.jpg", 
"images/doo-wop_greats.jpg", 
"images/doo_wop_jukebox.jpg", 
"images/number_one_hits.jpg", 
"images/one_hit_wonders.jpg", 
"images/teenagers_in_love.jpg", 
"images/thats_rock_and_roll_cd.jpg", 
"images/diamonds_25_golden_hits.jpg", 
"images/best_of_duprees.jpg", 
"images/sixties_cd.jpg", 
"images/country_gospel_cd.jpg", 
"images/firehouse_cd.jpg", 
"images/preservation_hall_cd.jpg" 

 ];

var my_status = [ 

"BIG BAND: Louis Prima ~ Classic Album Collection (3 CDs)", 
"EASY LISTENING: Jo Stafford ~ Blues In The Night (1 CD)", 
"EASY LISTENING: Julie London ~ Greatest Hits (1 CD)", 
"GOLDEN OLDIES: Doo Wop Classics - Various Artists (3 CDs)", 
"GOLDEN OLDIES: Doo Wop Greats - Various Artists (3 CDs)", 
"GOLDEN OLDIES: Doo Wop Jukebox - Various Artists (3 CDs)", 
"GOLDEN OLDIES: Number One Hits ~ Various Artists (3 CDs)", 
"GOLDEN OLDIES: One Hit Wonders - Various Artists (3 CDs)", 
"GOLDEN OLDIES: Teenagers In Love - Various Artists (3 CDs)", 
"GOLDEN OLDIES: That's Rock And Roll - Various Artists (3 CDs)", 
"GOLDEN OLDIES: The Diamonds ~ 25 Golden Hits (1 CD)", 
"GOLDEN OLDIES: The Duprees ~ Best Of (1 CD)", 
"GOLDEN OLDIES: The Sixties ~ All Original Artists (3 CDs)", 
"GOSPEL: Country Gospel ~ Various Artists (3 CDs)", 
"JAZZ: Firehouse Five + 2 ~ Tiger Rag (1 CD)", 
"JAZZ: Preservation Hall Dixieland Jazz Band (1 CD)" 

 ];

var speed = 8000;
var index = -1;
var an_imagepic = -1;
var an_image = new Image();
	an_image.src = my_image[an_imagepic];
var my_timeout;
function spinMe(){
        index++, an_imagepic++;
	if ((index >= my_image.length) && (index >= my_link.length)) 
	{index = 0, an_imagepic = 0;}
	window.document.the_form.the_image.src = my_image[an_imagepic];
	window.document.the_form.the_status.value = my_status[index];
       	my_timeout = setTimeout("spinMe();", speed);
if ((navigator.appName == "Microsoft Internet Explorer") || ((navigator.appName == "Netscape") && (parseFloat(navigator.appVersion) > "4.6")))
{window.document.the_form.start.style.color = "#FFFFFF";
window.document.the_form.start.style.background = "#000000";
window.document.the_form.stop.style.color = "#FFFFFF";
window.document.the_form.stop.style.background = "#000000";
window.document.the_form.view_songs.style.color = "#FFFFFF";
window.document.the_form.view_songs.style.background = "#000000";
}}
function theLink(){
	window.open(my_link[index]);}