// JavaScript Document
function class_hover(obj){
	 obj.style.backgroundColor = '#FFFFFF';
	 obj.style.cursor = 'pointer';
	 obj.style.border= 'solid #9cb0d1 1px';
	 }

function class_no_hover(obj){
	obj.style.backgroundColor = '#eeeeee';
	obj.style.cursor = 'pointer';
	obj.style.border= 'solid #eeeeee 1px';
	}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
