jQuery(function(){
	jQuery.fn.doMyRows = function(){
		jQuery(this).hover(
			function(){
				jQuery(this).addClass("hightlight");
			},
			function(){
				jQuery(this).removeClass("hightlight");
			}
		);
		jQuery(this).filter(':even').addClass('odd');
	}

	// This handles the pagination selector drop down selected index change
	jQuery('.table_numrows').change(function(){
		this.form.submit();
	});
	
	jQuery(".std-table > tbody > tr").doMyRows();
});