// JavaScript Document
var pictures = new Array
// List all the pictures in the slideshow here
(
"img/visitstore1.jpg" 
,"img/visitstore2.jpg"
,"img/visitstore3.jpg"
,"img/visitstore4.jpg"
,"img/visitstore5.jpg"
,"img/visitstore6.jpg"
,"img/visitstore7.jpg"
,"img/visitstore8.jpg"
,"img/visitstore9.jpg"
,"img/visitstore10.jpg"
,"img/visitstore11.jpg"
);
var picture_num = 0;
var current_picture = new Image();
current_picture.src = pictures[picture_num];
function start_show() 
{
// Time is in seconds X 1000
setInterval("slideshow()", 3000);
}
function slideshow() 
{
picture_num++;
if (picture_num == pictures.length) 
{
picture_num = 0;
}
current_picture.src = pictures[picture_num];
document["slide_show"].src = current_picture.src;
}

function brandSearch(){
	            		var searchvalue=document.getElementById("brandbox_input_2");
					if (searchvalue.value !="-1") {
						//alert("Search value is "+searchvalue.value);
						
						if ((document.getElementById("brandbox_input_2").value).indexOf("http") ==-1) {						
	            			window.location="http://store.daleproaudio.com/Store/Search.aspx?key="+searchvalue.value;
							} else {
							window.location=searchvalue.value;
							}
						
						
						} else {
						alert("Please select a brand to search by");
						}
            	}
				
function brandSearch2(){
	            		var searchvalue=document.getElementById("brandbox_input_3");
					if (searchvalue.value !="-1") {
						//alert("Search value is "+searchvalue.value);
						
						if ((document.getElementById("brandbox_input_3").value).indexOf("http") ==-1) {						
	            			window.location="http://store.daleproaudio.com/Store/Search.aspx?key="+searchvalue.value;
							} else {
							window.location=searchvalue.value;
							}
						
						
						} else {
						alert("Please select a brand to search by");
						}
            	}

