/*--------------------------------------------------|
| BoxMenu 1.00 | www.OSnetCommerce.it		    |
|---------------------------------------------------|
| Copyright (c) 2003-2004 Marco Montagnani          |
|                                                   |
| This script can be used freely as long as all     |
| copyright messages are intact.                    |
|                                                   |
| Updated: 11.11.2003                               |
|--------------------------------------------------*/

// Clikker
function clikker(a,b) {
	if (a.style.display =='') {
		a.style.display = 'none';
		b.src='images/ddtemplate/arrow_down.gif';
  	}else {
    		a.style.display='';
		b.src='images/ddtemplate/arrow_up.gif';
  	}
};

// Declikker
function declikker(a,b) {
	if (a.style.display =='none') {
		a.style.display='';
        b.src='images/ddtemplate/arrow_up.gif';
	}else {
		a.style.display='none';
		b.src='images/ddtemplate/arrow_down.gif';
	}
};

// linker
function linker(a) {
	a.style.textDecoration='underline';
};
// delinker
function delinker(a) {
	a.style.textDecoration='none';
};	
	

