// JavaScript Document
function menu_goto( menuform )
{
 var baseurl = 'http://www.childrens-bedding.co.uk/' ;
 selecteditem = menuform.url.selectedIndex ;
 newurl = menuform.url.options[ selecteditem ].value ;
 if (newurl.length != 0) {
 location.href = baseurl + newurl ;
 }
}
document.writeln( '<form action="../scripts/chgoto" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );

document.writeln( '<option>-Quick Search-</option>' );
document.writeln( '<option></option>' );

document.writeln( '<option value="index.htm">Home</option>' );
document.writeln( '<option value="characters.htm">Characters</option>' );
document.writeln( '<option value="childrens-bedding/childrens-character-bedding/bang-on-the-door.htm">---Bang on the Door</option>' );
document.writeln( '<option value="childrens-bedding/childrens-character-bedding/boys.htm">---Boys Bedding</option>' );
document.writeln( '<option value="childrens-bedding/childrens-character-bedding/disney-princess.htm">---Disney Princess</option>' );
document.writeln( '<option value="childrens-bedding/childrens-character-bedding/disney.htm">---Disney Bedding</option>' );
document.writeln( '<option value="childrens-bedding/childrens-character-bedding/football.htm">---Football Bedding</option>' );
document.writeln( '<option value="childrens-bedding/childrens-character-bedding/girls.htm">---Girls Bedding</option>' );
document.writeln( '<option value="childrens-bedding/childrens-character-bedding/movie.htm">---Movie Bedding</option>' );
document.writeln( '<option value="childrens-bedding/childrens-character-bedding/simpsons.htm">---Simpsons Bedding</option>' );
document.writeln( '<option value="childrens-bedding/childrens-character-bedding/superheros.htm">---Superheros Bedding</option>' );
document.writeln( '<option value="childrens-bedding/childrens-character-bedding/tweenies.htm">---Tweenies Bedding</option>' );
document.writeln( '<option value="links.htm">Links</option>' );
document.writeln( '<option value="contact.htm">Contact Us</option>' );
document.writeln( '<option></option>' );

document.writeln( '</select>' );
document.writeln( '</form>' );