	function MultiRoll(top_id,bottom_id,top_img,top_roll,bottom_img,bottom_roll) {
		this.top_id = top_id;
		this.bottom_id = bottom_id;
		this.top_image = top_img;
		this.top_roll = top_roll;
		this.bottom_image = bottom_img;
		this.bottom_roll = bottom_roll;
	}	
	
	function multiRollOver(m) {
		var top_el = document.getElementById(m.top_id);
		var bottom_el = document.getElementById(m.bottom_id);	
		var td_el = bottom_el.parentNode.parentNode;
		
		top_el.src = "images/" + m.top_roll;
		bottom_el.src = "images/" + m.bottom_roll;		
		td_el.style.backgroundColor = "#ED008C";				
	}

	function multiRollOut(m) {
		var top_el = document.getElementById(m.top_id);
		var bottom_el = document.getElementById(m.bottom_id);	
		var td_el = bottom_el.parentNode.parentNode;
		
		top_el.src = "images/" + m.top_image;
		bottom_el.src = "images/" + m.bottom_image;		
		td_el.style.backgroundColor = "#0F1F20";				
	}

	function rollmenuOver(el,img) {
		var td = el.parentNode.parentNode;
		td.style.backgroundColor = "#ED008C";
		el.src = "images/" + img;
	}
	
	function rollmenuOut(el,img) {
		var td = el.parentNode.parentNode;
		td.style.backgroundColor = "#0F1F20";
		el.src = "images/" + img;
	}
	
	function rollmenuOverX(top_el,el,img) {
		var td = el.parentNode.parentNode;
		top_el.style.border = "solid 1px #ED008C";
		td.style.backgroundColor = "#ED008C";
		el.src = "images/" + img;
	}
	
	function rollmenuOutX(top_el,el,img) {
		var td = el.parentNode.parentNode;
		top_el.style.border = "solid 1px #ffffff";
		td.style.backgroundColor = "#0F1F20";
		el.src = "images/" + img;
	}	
