function popJump(selOBJ)
{ n = selOBJ.selectedIndex;
	location.href = selOBJ.options[n].value;
}
// -->



if (document.images) {
 
img01on = new Image();
img01on.src = "images/btn_o_special.gif";    
img01off = new Image();
img01off.src = "images/btn_d_special.gif";  
img02on = new Image();
img02on.src = "images/btn_o_buy.gif";    
img02off = new Image();
img02off.src = "images/btn_d_buy.gif";  
img03on = new Image();
img03on.src = "images/btn_o_goods.gif";    
img03off = new Image();
img03off.src = "images/btn_d_goods.gif";  
img04on = new Image();
img04on.src = "images/btn_o_englishrose.gif";    
img04off = new Image();
img04off.src = "images/btn_d_englishrose.gif";  
img05on = new Image();
img05on.src = "images/btn_o_breed.gif";    
img05off = new Image();
img05off.src = "images/btn_d_breed.gif";  
                        }

function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}



function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}



//-->