function yellowSearch(thisElement) {
	thisElement.style.cursor = "hand";
	document.getElementById("searchbox").style.borderColor = "yellow";
}

function normalSearch() {
	document.getElementById("searchbox").style.borderColor = "#FF6699";
}

function WaysToSearch(thisElement) {

	thisElement.style.cursor = "hand";
	document.getElementById("waystosearch").style.display = "";
}

function yellowCategory(thisElement) {
    thisElement.style.cursor = "hand";
    
    //li is collection of list elements <li>
    var li = document.getElementById("nav-product").firstChild.childNodes;
    for(i=0;i<li.length;i++) 
        li[i].firstChild.style.width = "123px";   

    document.getElementById("nav-product").firstChild.style.borderStyle = "solid"; 
    document.getElementById("nav-product").firstChild.style.borderWidth = "5px";
    document.getElementById("nav-product").firstChild.style.borderColor = "yellow";
    
}

function normalCategory() {

    //li is collection of list elements <li>
    var li = document.getElementById("nav-product").firstChild.childNodes;

    document.getElementById("nav-product").firstChild.style.borderColor = "rgb(162,225,255)";
}

function yellowCatalog(thisElement) {
    thisElement.style.cursor = "hand";
    document.getElementById("onlinecatalog").style.borderColor = "yellow";
}

function normalCatalog() {
    document.getElementById("onlinecatalog").style.borderColor = "#FF6699";
}

function yellowSpecials(thisElement) {
    thisElement.style.cursor = "hand";
    document.getElementById("specialstitle").style.borderStyle = "solid";
    document.getElementById("specialstitle").style.borderWidth = "5px";
    document.getElementById("specialstitle").style.borderColor = "yellow";
}

function normalSpecials() {
    document.getElementById("specialstitle").style.borderColor = "#FF6699";
}

function MakeBookmark () { 

	var bm_url = location.href;
	var bm_title = document.title;

	if (window.sidebar) {
		window.sidebar.addPanel(bm_title,bm_url,""); 
	}
	else if(window.opera && window.print) { 
		var elem = document.createElement('a');
		elem.setAttribute('href',bm_url);
		elem.setAttribute('title',bm_title);
		elem.setAttribute('rel','sidebar');
		elem.click();
	} 
	else if(document.all) {
		window.external.AddFavorite(bm_url,bm_title); 
	}

} 

function AddToDelicious() {

	window.open('http://del.icio.us/post?v=4&noui&jump=close&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title), 'delicious','toolbar=no,width=750,height=300');

}


