// JavaScript Document

function show (me,id) {
		document.getElementById(id).style.display="inline";	
		document.getElementById(id+"v").style.display="none";	
}

function hide (me,id) {
	document.getElementById(id).style.display="none";
	document.getElementById(id+"v").style.display="inline";
}

function light(me) {
	me.style.background="#fff4d6";		
}

function unlight(me) {
	me.style.background="white";
}

//jquery
function pages_list_form_jquery(){	
	$(document).ready(function() {
		
		$("tr").mouseover(function() {
			$(this).toggleClass('textHover');
		});
		
		$("tr").mouseout(function() {
			$(this).toggleClass('textHover');
		});
		
		$("td span").mouseover(function() {
			$(this).toggleClass('hide');
		});

		$("td span").mouseout(function() {
			$(this).toggleClass('hide');
		});

	/*	$("span.files").mouseover(function() {
			$(this).toggleClass('hide');
		});

		$("span.files").mouseout(function() {
			$(this).toggleClass('show');
		});
	*/	
	});/*end of document.ready*/
}/*end of frame_dest_jquery*/

